-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "veact-use",
"version": "0.1.4",
"description": "Collection of Veact Hooks",
"keywords": [
"React mutable state lib",
"React vue state",
"React composition API",
"Veact Hooks"
],
"author": "Surmon",
"license": "MIT",
"repository": "veactjs/veact-use",
"homepage": "https://github.com/veactjs/veact-use",
"funding": "https://github.com/veactjs/veact-use?sponsor=1",
"files": [
"CHANGELOG.md",
"dist/"
],
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint src",
"format": "npm run lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverage",
"build": "rimraf dist && tsc",
"ci": "npm run lint && npm run test && npm run build",
"release": ". ./scripts/release.sh"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18 || ^19",
"react-dom": "^16.8.0 || ^17 || ^18 || ^19",
"veact": "*"
},
"devDependencies": {
"@eslint/js": "^9.x",
"@happy-dom/jest-environment": "^15.x",
"@testing-library/react": "^16.x",
"@types/eslint": "^9.x",
"@types/jest": "^29.x",
"@types/react": "^18.x",
"@types/react-dom": "^18.x",
"eslint": "^9.x",
"eslint-config-prettier": "^9.x",
"eslint-plugin-prettier": "^5.x",
"globals": "^15.9.0",
"jest": "^29.x",
"prettier": "^3.x",
"react": "^18.x",
"react-dom": "^18.x",
"rimraf": "^6.x",
"ts-jest": "^29.x",
"ts-node": "^10.x",
"typescript": "^5.5.4",
"typescript-eslint": "^8.x",
"veact": "latest"
}
}