-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "desktop-control-v2",
"version": "2.0.0",
"description": "Screenshot-free Windows scene instrumentation and node-targeted control",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:native": "powershell -NoProfile -ExecutionPolicy Bypass -File native/hook32/build.ps1",
"check": "tsc -p tsconfig.test.json",
"dev": "tsx src/server.ts",
"install:skill": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/install-agent-skill.ps1",
"start": "tsx src/server.ts",
"test": "vitest run"
},
"keywords": [
"codex",
"mcp",
"windows",
"desktop-automation",
"accessibility",
"scene-graph",
"graphics-hook"
],
"author": "aShanki",
"license": "MIT",
"packageManager": "pnpm@10.29.2",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.2.0",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}