-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "@one710/computermate",
"version": "0.3.0",
"description": "MCP server exposing computer-use tools to LLMs",
"type": "module",
"main": "dist/lib.js",
"types": "dist/lib.d.ts",
"exports": {
".": {
"import": "./dist/lib.js",
"types": "./dist/lib.d.ts"
}
},
"bin": {
"computermate": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:http": "node dist/http.js",
"test": "vitest run tests/native.test.ts",
"test:playwright": "vitest run tests/playwright.test.ts",
"test:integration": "vitest run tests/mcp-server.test.ts",
"test:docker": "vitest run tests/docker-http.test.ts --testTimeout=180000",
"test:all": "vitest run",
"test:cursor": "vitest run tests/virtual-cursor.test.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"express": "^5.2.1",
"node-screenshots": "^0.2.8",
"playwright": "^1.50.0",
"robotjs": "^0.6.0",
"sharp": "^0.34.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"license": "MIT"
}