-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "jotai-lazy",
"version": "1.0.4",
"description": "",
"main": "dist/index.cjs",
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jotaijs/jotai-lazy.git"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"development": "./dist/index.development.js",
"production": "./dist/index.js",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"development": "./dist/index.development.cjs",
"production": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "bunchee"
},
"files": [
"dist"
],
"devDependencies": {
"@types/react": "^18.3.12",
"bunchee": "^5.6.1",
"jotai": "^2.10.2",
"react": "^18.3.1",
"typescript": "^5.5.3"
},
"packageManager": "[email protected]",
"peerDependencies": {
"jotai": ">=2.5.1",
"react": "^18.3.1"
}
}