-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.48 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
{
"name": "jotai-components",
"type": "module",
"version": "0.2.0",
"description": "Jōtai utilities to reduce React boilerplate 👻⚛",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"keywords": ["jotai", "react", "state-management"],
"author": "boaris <[email protected]>",
"contributors": ["Boaris (https://github.com/boar-is)"],
"repository": {
"type": "git",
"url": "git+https://github.com/boar-is/jotai-components.git"
},
"bugs": {
"url": "https://github.com/boar-is/jotai-components/issues"
},
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"sideEffects": false,
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.3",
"jotai": "^2",
"jsdom": "^25.0.1",
"lefthook": "^1",
"react": "^18",
"tsup": "^8",
"typescript": "^5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"peerDependencies": {
"@types/react": ">=17.0.0",
"@types/react-dom": ">=17.0.0",
"jotai": ">=2.0.0",
"react": ">=17.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"react": {
"optional": true
},
"jotai": {
"optional": true
}
}
}