-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 KB
/
package.json
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
{
"name": "headless-editor-mcp",
"description": "Headless Editor MCP Server for intelligent code editing",
"version": "0.0.10",
"license": "MIT",
"author": "oakenai",
"type": "module",
"bin": {
"headless-editor-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "jest",
"test:editor": "tsx scripts/test-headless-editor.ts",
"test:watch": "jest --watch",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"diff": "^5.1.0",
"memfs": "^4.15.0",
"monaco-editor-core": "^0.52.2",
"typescript-language-server": "^4.3.3",
"uuid": "^11.0.3",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.0.8",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/diff": "^5.0.9",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}