-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 974 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 974 Bytes
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
{
"name": "transactional-reducer",
"version": "1.0.0",
"private": true,
"description": "A transactional state management library with reducer pattern",
"scripts": {
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"build": "pnpm -r --stream run build",
"test": "pnpm -r --stream run test",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"transaction",
"reducer",
"state-management"
],
"author": "anuoua <anuoua@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/anuoua/transactional-reducer.git"
},
"homepage": "https://github.com/anuoua/transactional-reducer#readme",
"bugs": {
"url": "https://github.com/anuoua/transactional-reducer/issues"
},
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"prettier": "^3.8.3"
}
}