-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 823 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 823 Bytes
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
{
"name": "command-server",
"description": "Exposes a file-based RPC API for running VSCode commands",
"publisher": "saidelike",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hands-free-vim/command-server"
},
"version": "0.9.1",
"main": "./index/index.cjs",
"private": true,
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "20.17.50",
"@types/rimraf": "^3.0.0",
"@types/vscode": "1.53.0",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"esbuild": "0.25.4",
"eslint": "9.27.0",
"glob": "11.0.0",
"mocha": "8.1.3",
"typescript": "5.8.3",
"vscode-test": "1.6.1",
"neovim": "^5.0.1"
},
"dependencies": {
"minimatch": "^3.0.4",
"rimraf": "^3.0.2"
}
}