-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.14 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
70
71
72
73
74
75
76
{
"name": "react-substate",
"author": "Harvtronix",
"version": "6.0.3",
"license": "MIT",
"description": "Blazing-fast, centralized state management with auto-guaranteed, immutable state changes",
"keywords": [
"react",
"state",
"state management",
"immer",
"hooks",
"redux"
],
"bugs": {
"url": "https://github.com/Harvtronix/react-substate/issues"
},
"homepage": "https://github.com/Harvtronix/react-substate#readme",
"type": "module",
"module": "./dist/mjs/main/index.js",
"exports": {
"types": "./dist/mjs/main/index.d.ts",
"import": "./dist/mjs/main/index.js",
"require": "./dist/cjs/main/index.js"
},
"files": [
"dist/cjs/main/*",
"dist/mjs/main/*"
],
"scripts": {
"build": "npm-run-all clean build:mjs build:cjs",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:mjs": "tsc --project tsconfig.mjs.json",
"build:watch": "tsc --watch",
"clean": "rimraf dist .test-coverage",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix --max-warnings 0 .",
"test": "vitest run --coverage",
"test:watch": "vitest --coverage"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^8.57.1",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"npm-check-updates": "^17.1.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
},
"peerDependencies": {
"react": ">=16.14",
"react-dom": ">=16.14"
},
"dependencies": {
"immer": "^10.1.1"
}
}