This repository was archived by the owner on Apr 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
50
51
52
{
"name": "comment-hide",
"displayName": "comment-hide",
"publisher": "jiangxue-analysis",
"description": "The plugin allows you to hide and show comments, and saves them to a specified folder.",
"repository": "https://github.com/jiangxue-analysis/comment-hide",
"icon": "icon.png",
"version": "1.1.9",
"engines": {
"vscode": "^1.98.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"activationEvents": [
"onCommand:extension.saveComments",
"onCommand:extension.restoreComments"
],
"contributes": {
"commands": [
{
"command": "extension.saveComments",
"title": "Save Comments"
},
{
"command": "extension.restoreComments",
"title": "Restore Comments"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"test": "vscode-test",
"lint": "eslint src --ext .ts,.js",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.98.0",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.23.0",
"typescript": "^5.8.2"
}
}