-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 916 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 916 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
{
"name": "reef-protocol",
"private": true,
"workspaces": [
"protocol",
"client",
"openclaw",
"directory"
],
"scripts": {
"build": "npm run build -w protocol && npm run build -w client && npm run build -w openclaw && npm run build -w directory",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev:directory": "npm run dev -w directory",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,json,yml,yaml}": "prettier --write",
"*.{ts,js}": "eslint --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0",
"vitest": "^3.0.0"
},
"version": "0.2.18"
}