-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1022 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
36
37
38
{
"name": "anode-workspace",
"private": true,
"packageManager": "pnpm@10.30.3",
"repository": {
"type": "git",
"url": "git+https://github.com/stulyproject/anode.git"
},
"bugs": {
"url": "https://github.com/stulyproject/anode/issues"
},
"homepage": "https://github.com/stulyproject/anode#readme",
"scripts": {
"build": "pnpm -r --workspace-concurrency=1 build",
"lint": "pnpm -r run lint",
"test": "pnpm -r run test",
"bench": "pnpm -r run bench",
"bench:out": "pnpm -r run bench:out",
"format": "prettier --write .",
"check": "pnpm build && pnpm lint && pnpm test",
"all": "pnpm format && pnpm check",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"pnpm": {
"overrides": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}
}