-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.31 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.31 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "computer-mcp-server",
"version": "0.0.1",
"description": "A computer mcp server",
"author": "zhensherlock",
"type": "module",
"license": "MIT",
"bin": {
"computer-mcp-server": "./build/index.js"
},
"files": [
"build",
"LICENSE",
"README.md"
],
"main": "build/index.js",
"scripts": {
"prepare": "husky",
"lint": "npx eslint \"src/**/*.{ts,js}\"",
"build": "tsc --noEmit && cross-env NODE_ENV=production node scripts/build.js",
"dev": "npm run dev:stdio",
"dev:stdio": "cross-env NODE_ENV=local concurrently \"tsc --noEmit --watch\" \"node scripts/dev.js\"",
"dev:web": "cross-env NODE_ENV=local TRANSPORT=web concurrently \"tsc --noEmit --watch\" \"node scripts/dev.js\"",
"test": "vitest run",
"coverage": "rimraf coverage && npm run test && c8 report --reporter=lcov --reporter=html",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -n changelog-option.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.23.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"nanoid": "^5.1.6",
"yargs": "^17.7.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@modelcontextprotocol/inspector": "^0.18.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/coverage-v8": "^4.0.15",
"c8": "^10.1.3",
"compare-func": "^2.0.0",
"concurrently": "^9.2.1",
"conventional-changelog-angular": "^8.1.0",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^10.1.0",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nyc": "^17.1.0",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"tree-kill": "^1.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/my-mcp-hub/computer-mcp-server.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}