-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.86 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
{
"name": "riux",
"version": "0.0.0-development",
"description": "📦 Fully typed and immutable store made on top of Immer with mutation, action, subscription and validation!",
"author": {
"name": "skarab42",
"email": "skarab@bluewin.ch"
},
"repository": {
"type": "git",
"url": "https://github.com/skarab42/riux.git"
},
"homepage": "https://github.com/skarab42/riux",
"bugs": "https://github.com/skarab42/riux/issues",
"funding": "https://github.com/sponsors/skarab42",
"license": "MIT",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"check": "tsc -p ./tsconfig.check.json",
"lint": "eslint --max-warnings=0 .",
"format": "prettier --check .",
"check-lint-format": "pnpm check && pnpm lint && pnpm format",
"test": "pnpm check-lint-format && pnpm vitest run --coverage",
"prepare": "npx simple-git-hooks",
"release": "semantic-release --branches main"
},
"dependencies": {
"immer": "^9.0.15"
},
"devDependencies": {
"@skarab/eslint-config": "^1.1.0",
"@skarab/prettier-config": "^1.2.2",
"@skarab/typescript-config": "^1.1.0",
"@types/node": "^18.6.3",
"c8": "^7.12.0",
"eslint": "^8.20.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.7.4",
"vite-plugin-vitest-typescript-assert": "^1.1.4",
"vitest": "^0.20.2",
"zod": "^3.18.0"
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"packageManager": "pnpm@7.6.0",
"keywords": [
"immutable",
"store",
"state",
"immer",
"zod",
"redux",
"typed",
"mutation",
"action",
"subscription"
]
}