-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.01 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "jsdoc-folder",
"displayName": "JSDoc Folder",
"description": "Automatically collapses JSDoc comment blocks by default",
"version": "0.0.5",
"publisher": "aydgn",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/aydgn/jsdoc-folder.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"keywords": [
"jsdoc",
"comment",
"fold",
"collapse",
"javascript",
"typescript",
"jsx",
"tsx"
],
"activationEvents": [
"onStartupFinished",
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "jsdocFolder.enableAutoFold",
"title": "JSDoc Folder: Enable Auto-Folding"
},
{
"command": "jsdocFolder.disableAutoFold",
"title": "JSDoc Folder: Disable Auto-Folding"
}
],
"configuration": {
"title": "JSDoc Folder",
"properties": {
"jsdocFolder.autoFold": {
"type": "boolean",
"default": true,
"description": "Automatically fold JSDoc comments when opening files"
}
}
}
},
"scripts": {
"vscode:prepublish": "rimraf ./out && npm run build:prod",
"build": "rimraf ./out && node ./esbuild.config.js",
"build:prod": "rimraf ./out && node ./esbuild.config.js production",
"watch": "node ./esbuild.config.js watch",
"dev": "rimraf ./out && node ./esbuild.config.js watch --dev & code --extensionDevelopmentPath=${PWD}",
"test": "npm run build && node ./out/test/runTest.js",
"package": "npm run build:prod && vsce package",
"publish": "npm run build:prod && vsce publish"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/node": "^20.4.5",
"typescript": "^5.7.2",
"@vscode/vsce": "^2.21.0",
"esbuild": "^0.24.0",
"rimraf": "^6.0.1"
},
"dependencies": {}
}