-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "usemultiplestate",
"version": "1.1.2",
"description": "A React hook for managing multiple states",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [
"react",
"hook",
"state",
"management",
"state-management",
"useState"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fiderosado/UseMultipleState.git"
},
"author": "Fidel Remedios Rosado",
"bugs": {
"url": "https://github.com/fiderosado/UseMultipleState/issues"
},
"homepage": "https://github.com/fiderosado/UseMultipleState#readme",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"rollup": "^2.56.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"vitest": "^2.1.8",
"jsdom": "^25.0.1",
"standard": "^17.1.2"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json"
}
}