-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.77 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
{
"name": "statux",
"version": "2.0.1",
"description": "A minimal state management library with React Hooks and immutable state",
"homepage": "https://statux.dev/",
"repository": "github:franciscop/statux",
"author": "Francisco Presencia <public@francisco.io> (https://francisco.io/)",
"funding": "https://www.paypal.me/franciscopresencia/19",
"license": "MIT",
"keywords": [
"state",
"management",
"javascript",
"react",
"hooks"
],
"scripts": {
"build": "npm run build:library && npm run build:types && npm run build:prettier",
"build:library": "vite build && mv dist/index.min.js . && rm -rf dist",
"build:types": "dts-bundle-generator --out-file index.d.ts src/index.tsx",
"build:prettier": "prettier src *.ts *.json --write",
"lint": "tsc",
"size": "echo $(gzip -c index.min.js | wc -c) bytes",
"start": "vitest",
"test": "vitest run --coverage"
},
"main": "index.min.js",
"type": "module",
"types": "index.d.ts",
"files": [
"index.d.ts"
],
"documentation.page": {
"menu": {
"Author": "https://francisco.io/",
"Donate": "https://www.paypal.me/franciscopresencia/19",
"npm": "https://www.npmjs.com/package/statux",
"Github": "https://github.com/franciscop/statux"
}
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^18.3.4",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.27.7",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test": "^0.24.12",
"terser": "^5.46.1",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"peerDependencies": {
"react": ">=18.0.0"
}
}