-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.04 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.04 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
{
"name": "clawdcursor",
"version": "0.8.3",
"description": "OS-level desktop automation server. Gives any AI model eyes, hands, and ears on a real computer. Model-agnostic — works with Claude, GPT, Gemini, Llama, or any tool-calling model.",
"main": "dist/index.js",
"bin": {
"clawdcursor": "dist/index.js"
},
"scripts": {
"postinstall": "node scripts/verify-install.js || true",
"build": "tsc && node dist/postbuild.js",
"setup": "node scripts/verify-install.js && npm run build && node -e \"if(process.platform==='darwin'){const{execSync}=require('child_process');try{execSync('chmod +x native/build.sh && native/build.sh',{stdio:'inherit'})}catch(e){console.error('\\n❌ Native build failed. Run manually: cd native && ./build.sh');process.exit(1)}}\" && npm link --force",
"postbuild:msg": "handled by postbuild.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js start",
"stop": "node dist/index.js stop",
"doctor": "node dist/index.js doctor",
"lint": "eslint src/",
"test": "vitest",
"test:ci": "vitest run",
"test:mcp-schema-snapshot": "tsx scripts/build-mcp-schema.ts",
"test:mcp-schema-snapshot:update": "tsx scripts/build-mcp-schema.ts --write",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --noEmit -p tsconfig.tests.json"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@nut-tree-fork/nut-js": "^4.2.0",
"commander": "^12.0.0",
"dotenv": "^16.4.0",
"express": "^4.18.0",
"playwright": "^1.58.2",
"sharp": "^0.33.5",
"ws": "^8.16.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.3",
"supertest": "^7.2.2",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT"
}