-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "comment-issues",
"displayName": "Comment Issues",
"description": "Links issue numbers in comments to Repository issues.",
"repository": "https://github.com/ryawaa/comment-issues",
"version": "1.0.1",
"publisher": "ryawaa",
"engines": {
"vscode": "^1.74.0"
},
"icon": "assets/icon.png",
"activationEvents": [
"onLanguage"
],
"main": "./out/extension.js",
"contributes": {
"languages": [],
"commands": [],
"menus": {},
"keybindings": []
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"test": "npm run compile && node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^20",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.73.0",
"@vscode/test-electron": "^1.6.1",
"glob": "^11.0.0",
"mocha": "^10.7.3",
"sinon": "^19.0.2",
"typescript": "^5.6.2"
}
}