-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.88 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.88 KB
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": "@js-toolkit/react-hooks",
"version": "1.55.0",
"description": "React hooks",
"author": "VZH",
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/js-toolkit/react-hooks"
},
"scripts": {
"clean": "rimraf dist/*",
"copy:configs": "copyfiles package.json .npmignore README.md LICENSE ./dist/",
"minify": "node-utils-minify --replace ./dist",
"build": "npm run clean && tsc --build ./tsconfig.json && npm run minify",
"patch-publish": "npm run build && npm version patch --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags",
"minor-publish": "npm run build && npm version minor --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags"
},
"optionalDependencies": {
"@js-toolkit/node-utils": "1.2.6"
},
"devDependencies": {
"@eslint/compat": "2.0.1",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@js-toolkit/configs": "3.99.1",
"@js-toolkit/utils": "1.61.0",
"@js-toolkit/web-utils": "1.67.0",
"@types/eslint": "9.6.1",
"@types/lodash.debounce": "4.0.9",
"@types/react": "19.2.10",
"copyfiles": "2.4.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"lodash.debounce": "4.0.8",
"lodash.throttle": "4.1.1",
"prettier": "3.8.1",
"react": "19.2.4",
"recoil": "0.7.7",
"rimraf": "6.1.2",
"terser": "5.46.0",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0",
"yargs": "18.0.0"
},
"peerDependencies": {
"react": ">= 19"
}
}