-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 852 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 852 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
33
{
"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/glob": "^7.1.3",
"@types/mocha": "8.0.4",
"@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": "8.57.1",
"glob": "^7.1.6",
"mocha": "8.1.3",
"typescript": "5.8.3",
"vscode-test": "^1.4.1",
"neovim": "^5.0.1"
},
"dependencies": {
"minimatch": "^3.0.4",
"rimraf": "^3.0.2"
}
}