-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 989 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 989 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
{
"name": "protohiro-state-layers",
"private": true,
"version": "0.0.0",
"packageManager": "npm@10.9.2",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@types/node": "^24.3.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"publint": "^0.3.18",
"typescript": "^5.9.2",
"typescript-eslint": "^8.56.1"
},
"scripts": {
"build": "npm run --workspaces --if-present build",
"changeset": "changeset",
"lint": "eslint .",
"pack:check": "npm run -w @protohiro/state-layers pack:check",
"publint": "npm exec publint -- packages/react",
"release": "changeset publish",
"test": "npm run -w @protohiro/state-layers test",
"typecheck": "npm run --workspaces --if-present typecheck",
"verify": "npm run lint && npm run typecheck && npm run test && npm run build && npm run pack:check && npm run publint",
"version-packages": "changeset version"
}
}