-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.71 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": "clawhost",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"dev:web": "bun --filter web dev",
"dev:api": "bun --filter api dev",
"dev:desktop": "bun --filter clawhostgo dev",
"dev:mobile": "bun --filter mobile dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write . && eslint . --fix",
"format:check": "prettier --check .",
"test": "turbo test",
"test:watch": "turbo test:watch",
"check": "bun --filter api check && bun --filter web check && bun --filter clawhostgo check",
"version-patch": "bun scripts/version-patch.ts",
"build-go-manifest": "bun scripts/build-go-manifest.ts",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@testing-library/jest-dom": "^6.9.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^17.3.0",
"happy-dom": "^20.8.8",
"husky": "^9.1.7",
"knip": "^6.7.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"turbo": "^2.8.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.18.2",
"vitest": "^3.2.4"
},
"overrides": {
"@types/react": "18.3.28"
},
"trustedDependencies": [
"node-pty",
"esbuild",
"ssh2",
"protobufjs",
"sharp",
"cpu-features"
],
"packageManager": "bun@1.3.2"
}