-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.95 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
68
69
{
"name": "use-atom-creator",
"version": "1.0.1",
"description": "A React hook for creating atoms easily",
"keywords": ["react", "jotai", "hook"],
"homepage": "https://github.com/asurance/use-atom-creator",
"bugs": {
"url": "https://github.com/asurance/use-atom-creator/issues"
},
"license": "MIT",
"author": "asurance",
"sideEffects": [],
"main": "./dist/lib/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"files": ["dist", "CHANGELOG.md"],
"scripts": {
"build": "modern build",
"build:doc": "modern build --platform",
"build:watch": "modern build -w",
"bump": "modern bump",
"change": "modern change",
"change-status": "modern change-status",
"dev": "modern dev",
"gen-release-note": "modern gen-release-note",
"lint": "biome check",
"listpkg": "npm pack --dry-run",
"new": "modern new",
"pre": "modern pre",
"prepare": "modern build && simple-git-hooks",
"release": "modern release",
"reset": "npx rimraf node_modules ./**/node_modules",
"sort": "sort-package-json",
"upgrade": "modern upgrade"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true"
]
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@modern-js/module-tools": "2.60.3",
"@modern-js/plugin-rspress": "1.33.1",
"@types/node": "~16.11.7",
"@types/react": "^18.3.11",
"jotai": "^2.10.0",
"lint-staged": "~13.1.0",
"react": "^18.3.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"sort-package-json": "^2.10.1",
"tailwindcss": "^3.4.13",
"typescript": "~5.0.4"
},
"peerDependencies": {
"@types/react": "*",
"jotai": "*",
"react": "*"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}