-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.02 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
77
{
"name": "veact",
"version": "1.0.0",
"description": "Mutable state enhancer library for React by @vue/reactivity",
"keywords": [
"React",
"React mutable state",
"React vue state",
"React composition API",
"React state library",
"Vue reactivity"
],
"license": "MIT",
"author": "Surmon",
"repository": "veactjs/veact",
"homepage": "https://github.com/veactjs/veact",
"funding": "https://github.com/veactjs/veact?sponsor=1",
"files": [
"README.md",
"CHANGELOG.md",
"dist",
"src"
],
"sideEffects": false,
"type": "module",
"main": "./dist/veact.umd.cjs",
"module": "./dist/veact.js",
"browser": "./dist/veact.umd.cjs",
"types": "./dist/veact.d.ts",
"exports": {
".": {
"types": "./dist/veact.d.ts",
"import": "./dist/veact.js",
"require": "./dist/veact.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src",
"format": "prettier --write --parser typescript \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage --reporter=junit --outputFile=./junit.xml",
"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"
},
"dependencies": {
"@vue/reactivity": ">=3.5"
},
"devDependencies": {
"@eslint/js": "^9.x",
"@testing-library/react": "^16.x",
"@types/eslint": "^9.x",
"@types/react": "^18.x",
"@types/react-dom": "^18.x",
"@vitejs/plugin-react": "^4.x",
"@vitest/coverage-v8": "^2.x",
"eslint": "^9.x",
"eslint-config-prettier": "^9.x",
"eslint-plugin-prettier": "^5.x",
"globals": "^15.9.0",
"happy-dom": "^15.x",
"prettier": "^3.x",
"react": "^18.x",
"react-dom": "^18.x",
"typescript": "^5.5.4",
"typescript-eslint": "^8.x",
"vite": "^5.x",
"vite-plugin-dts": "^4.x",
"vitest": "^2.x"
}
}