-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.05 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
{
"name": "knuckles-vscode",
"displayName": "Knuckles",
"version": "0.13.0-alpha.0",
"description": "",
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/tscpp/knuckles",
"directory": "packages/typescript-plugin"
},
"publisher": "tscpp",
"type": "module",
"main": "./dist/extension.cjs",
"contributes": {
"commands": [
{
"command": "_knuckles.openJsDocLink"
}
]
},
"activationEvents": [
"*"
],
"dependencies": {
"@knuckles/language-server": "workspace:~",
"typescript": "^5.4.5",
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "20.x",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.15.0",
"esbuild": "^0.21.2"
},
"engines": {
"vscode": "^1.88.0"
},
"publishConfig": {
"tag": "latest"
}
}