-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "@madahapa/jotai-react",
"version": "0.0.1",
"description": "React integration for @madahapa/jotai",
"keywords": [
"state",
"management",
"atomic",
"react"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/strange-life/jotai-react.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vitest watch",
"build": "unbuild",
"prepack": "pnpm build",
"lint": "biome check",
"lint:fix": "biome check --write",
"test": "pnpm test:types && vitest run",
"test:types": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "npm:types-react@19.0.0-beta.2",
"@types/react-dom": "npm:types-react-dom@19.0.0-beta.2",
"happy-dom": "^15.7.3",
"react": "19.0.0-beta-26f2496093-20240514",
"react-dom": "19.0.0-beta-26f2496093-20240514",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vitest": "^2.0.5"
},
"peerDependencies": {
"react": "^18 || ^19"
}
}