-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "jotai-minidb",
"description": "Simple Jotai interface for IndexedDB key-value storage",
"author": "Ivan Buryak <[email protected]>",
"version": "0.0.8",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite --port=4141",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"pw": "yarn playwright test"
},
"main": "./dist/jotai-minidb.umd.cjs",
"module": "./dist/jotai-minidb.js",
"types": "./dist/lib/jotai-minidb.d.ts",
"exports": {
"import": {
"types": "./dist/lib/jotai-minidb.d.ts",
"default": "./dist/jotai-minidb.js"
},
"require": {
"types": "./dist/lib/jotai-minidb.d.ts",
"default": "./dist/jotai-minidb.umd.cjs"
}
},
"dependencies": {
"@rocicorp/resolver": "^1.0.0",
"idb-keyval": "^6.2.0"
},
"peerDependencies": {
"jotai": ">=1.10.0"
},
"devDependencies": {
"@playwright/test": "^1.29.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"fake-indexeddb": "^4.0.1",
"jotai": "^1.12.1",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.25.7"
},
"files": [
"dist/"
]
}