-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.96 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-toolroom",
"version": "0.4.0",
"description": "A toolset for react developers.",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.mjs",
"import": "./dist/index.mjs"
},
"./async": {
"types": "./dist/types/async/index.d.ts",
"require": "./dist/async.mjs",
"import": "./dist/async.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"start": "vite",
"build": "vite build && tsc -p tsconfig.production.json && tsc-alias -p tsconfig.production.json",
"commit": "lint-staged && git-cz -n",
"coverage": "vitest run --coverage",
"lint": "eslint --fix src test demos *.js --ext .js,.jsx,.ts,.tsx",
"doc:gen": "typedoc",
"build:demo": "cross-env BABEL_ENV=development BUILD_DEMO=true vite build",
"deploy:demo": "npm run doc:gen && npm run build:demo",
"test": "vitest run",
"test:watch": "vitest",
"serve": "vite preview"
},
"keywords": [
"react",
"hooks",
"util",
"react-query"
],
"author": "wmzy",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/wmzy/react-toolroom"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.29.0",
"@native-router/react": "^1.0.2",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/register": "^7.28.6",
"@linaria/babel-preset": "^5.0.4",
"@linaria/core": "^7.0.0",
"@linaria/vite": "^5.0.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.1",
"@vitest/ui": "^4.1.1",
"babel-plugin-module-resolver": "^5.0.3",
"commitizen": "^4.3.1",
"core-js": "^3.49.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"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",
"global-jsdom": "^29.0.0",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup-plugin-type-as-json-schema": "^0.2.6",
"terser": "^5.46.1",
"tsc-alias": "^1.8.16",
"typedoc": "^0.28.18",
"typedoc-plugin-mark-react-functional-components": "^0.2.2",
"typedoc-plugin-missing-exports": "^4.1.2",
"typescript": "^5.9.3",
"vite": "^8.0.2",
"vitest": "^4.1.1"
}
}