-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "solid-dexie",
"version": "0.0.5",
"description": "Dexie integration for SolidJS",
"homepage": "https://github.com/faassen/solid-dexie#readme",
"keywords": [
"solid",
"dexie"
],
"contributors": [
{
"name": "Martijn Faassen",
"email": "[email protected]",
"url": "http://blog.startifact.com"
}
],
"main": "./dist/solid-dexie.umd.js",
"module": "./dist/solid-dexie.es.js",
"exports": {
".": {
"import": "./dist/solid-dexie.es.js",
"require": "./dist/solid-dexie.umd.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "jest",
"typecheck": "tsc --project tsconfig.build.json",
"version": "version-changelog CHANGELOG.md && git add CHANGELOG.md",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-typescript": "^8.3.3",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.21",
"babel-jest": "^28.1.2",
"babel-preset-solid": "^1.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"fake-indexeddb": "^4.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jsdom": "^19.0.0",
"prettier": "^2.5.1",
"solid-jest": "^0.2.0",
"typescript": "^4.6.4",
"version-changelog": "^3.1.1",
"vite": "^2.9.8",
"vite-plugin-solid": "^2.2.6"
},
"peerDependencies": {
"dexie": "^3.2.2",
"solid-js": "^1.4.6"
}
}