forked from clawwork-ai/ClawWork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.28 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "clawwork",
"private": true,
"description": "OpenClaw desktop client with structured task management",
"scripts": {
"postinstall": "node scripts/ensure-electron.mjs",
"prepare": "husky",
"clean": "pnpm --filter @clawwork/desktop clean",
"dev": "pnpm --filter @clawwork/desktop dev",
"dev:website": "pnpm --filter @clawwork/website dev",
"dev:pwa": "pnpm --filter @clawwork/pwa dev",
"dev:slides": "pnpm --filter @clawwork/keynote dev",
"build": "pnpm -r build",
"check:architecture": "node scripts/check-architecture.mjs",
"check:renderer-copy": "node scripts/check-renderer-copy.mjs",
"check:ui-contract": "node scripts/check-ui-contract.mjs",
"typecheck": "pnpm --filter @clawwork/shared exec tsc -b && pnpm --filter @clawwork/core exec tsc -b && pnpm --filter @clawwork/pwa exec tsc --noEmit && pnpm --filter @clawwork/desktop exec tsc --noEmit && pnpm --filter @clawwork/website exec tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test:coverage",
"test:e2e": "playwright test --config=e2e/playwright.config.ts",
"test:e2e:smoke": "playwright test --config=e2e/playwright.config.ts --project=smoke",
"test:e2e:gateway": "playwright test --config=e2e/playwright.config.ts --project=gateway",
"check:i18n": "node scripts/check-i18n.mjs",
"check:dead-code": "knip",
"check": "pnpm lint && pnpm check:architecture && pnpm check:ui-contract && pnpm check:renderer-copy && pnpm check:i18n && pnpm check:dead-code && pnpm format:check && pnpm typecheck && pnpm test"
},
"lint-staged": {
"*.{ts,tsx,mts,cts,js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,yml,md,css,html}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.58.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^16.0.0",
"husky": "^9.0.0",
"knip": "^6.0.5",
"lint-staged": "^16.0.0",
"prettier": "^3.0.0",
"typescript-eslint": "^8.0.0"
}
}