-
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) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.16 KB
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": "openclaw",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm with-env turbo build",
"clean": "turbo clean && git clean -xdf .turbo .cache node_modules",
"dev": "pnpm with-env turbo dev",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"postinstall": "pnpm lint:ws",
"lint": "turbo build --filter=./packages/* && oxlint",
"lint:fix": "turbo build --filter=./packages/* && oxlint --fix",
"lint:ws": "pnpm dlx sherif@latest -r packages-without-package-json",
"services:logs": "docker compose logs -f",
"services:setup": "pnpm services:start && pnpm with-env turbo setup",
"services:start": "docker compose up -d --wait",
"services:status": "docker compose ps",
"services:stop": "docker compose down",
"with-env": "dotenv -c --"
},
"devDependencies": {
"@turbo/gen": "catalog:turbo",
"@workspace/oxfmt": "workspace:*",
"@workspace/oxlint": "workspace:*",
"cross-env": "10.1.0",
"dotenv-cli": "11.0.0",
"lefthook": "2.1.4",
"turbo": "catalog:turbo",
"typescript": "catalog:"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.30.3"
}