-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 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
{
"name": "vscode-automation-mcp",
"version": "1.0.0",
"description": "An MCP server that enables AI agents to automate VSCode by allowing them to interact with the UI, execute commands, inspect the DOM, and control the editor programmatically",
"author": "Sukarth Acharya",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sukarth/vscode-automation-mcp.git"
},
"homepage": "https://github.com/sukarth/vscode-automation-mcp#readme",
"bugs": {
"url": "https://github.com/sukarth/vscode-automation-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"vscode",
"automation",
"ui-automation",
"ai-agents",
"extension-development",
"testing",
"claude",
"copilot",
"cursor"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"vscode-automation-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prepare": "npm run build",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"validate": "tsx scripts/validate.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"sharp": "^0.33.5",
"vscode-extension-tester": "^8.11.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}