-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
212 lines (212 loc) · 5.53 KB
/
Copy pathpackage.json
File metadata and controls
212 lines (212 loc) · 5.53 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
{
"name": "explicit-folding",
"displayName": "Explicit Folding",
"description": "Manually controls how and where to fold your code",
"version": "0.24.3",
"author": {
"name": "Baptiste Augrain",
"email": "daiyam@zokugun.org"
},
"publisher": "zokugun",
"license": "MIT",
"homepage": "https://github.com/zokugun/vscode-explicit-folding",
"repository": {
"type": "git",
"url": "https://github.com/zokugun/vscode-explicit-folding.git"
},
"bugs": {
"url": "https://github.com/zokugun/vscode-explicit-folding/discussions/categories/issue-triage"
},
"engines": {
"vscode": "^1.23.0"
},
"main": "./lib/index.js",
"browser": "./lib/index.js",
"scripts": {
"audit:fix": "npm audit fix --min-release-age=0",
"build": "npm run clean && npm run compile:src && npm run bundle",
"bundle": "ncc build out/extension --out lib",
"ci:lint": "zizmor .",
"ci:lint:fix": "zizmor . --fix=all",
"clean": "rimraf .test .vscode-test lib out *.vsix",
"compile:src": "tsc -p src",
"lint": "xo",
"lint:all": "npm run lint:package && npm audit && npm run ci:lint && npm run lint",
"lint:fix": "xo --fix",
"lint:package": "fixpack || true",
"package": "rimraf *.vsix && vsce package",
"prepare": "husky; npm run lint:package",
"release": "release-it",
"test": "tsc -p test && vscode-test",
"test:dev": "vscode-test",
"test:watch": "tsc-watch -p src -p test --onSuccess 'vscode-test'",
"update:artifacts": "artifact update",
"update:ci": "PINACT_MIN_AGE=7 pinact run --update",
"update:deps": "taze --all",
"vscode:prepublish": "npm run build",
"watch:src": "tsc-watch -p src --onSuccess 'npm run bundle'",
"watch:test": "tsc-watch -p test"
},
"dependencies": {
"@zokugun/is-it-type": "0.8.1",
"@zokugun/regexp": "0.3.0",
"@zokugun/vscode.explicit-folding-api": "0.3.2",
"@zokugun/xtry": "0.11.6",
"minimatch": "5.1.9"
},
"devDependencies": {
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@types/chai": "5.2.3",
"@types/minimatch": "5.1.2",
"@types/mocha": "10.0.10",
"@types/node": "20.19.43",
"@types/vscode": "1.56.0",
"@vercel/ncc": "0.44.0",
"@vscode/test-cli": "0.0.12",
"@vscode/test-electron": "2.5.2",
"@vscode/vsce": "3.9.2",
"@zokugun/fs-extra-plus": "0.5.0",
"chai": "6.2.2",
"eslint-plugin-chai-friendly": "1.2.0",
"fixpack": "4.0.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"mocha": "11.7.6",
"release-it": "20.2.1",
"rimraf": "6.1.3",
"taze": "19.14.1",
"tsc-watch": "7.2.1",
"typescript": "5.9.3",
"xo": "0.60.0",
"yaml": "2.9.0"
},
"overrides": {
"mocha": {
"diff": "8.0.3",
"serialize-javascript": "7.0.5"
}
},
"allowScripts": {
"@vscode/vsce-sign": true,
"fsevents": true,
"keytar": true
},
"activationEvents": [
"onStartupFinished",
"onCommand:explicitFolding.nudge"
],
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "explicitFolding.nudge",
"title": "Nudge foldings",
"category": "Explicit Folding"
}
],
"configuration": {
"title": "Explicit Folding",
"properties": {
"explicitFolding.additionalSchemes": {
"type": "array",
"default": [],
"description": "List of additional schemes on which to the rules. For example: `gitlens`.",
"scope": "window"
},
"explicitFolding.autoFold": {
"type": "string",
"default": "none",
"enum": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"all",
"comments",
"none"
],
"enumDescriptions": [
"Folding ranges of level 1 or under",
"Folding ranges of level 2 or under",
"Folding ranges of level 3 or under",
"Folding ranges of level 4 or under",
"Folding ranges of level 5 or under",
"Folding ranges of level 6 or under",
"Folding ranges of level 7 or under",
"All folding ranges",
"Comments",
"No folding ranges"
],
"scope": "language-overridable"
},
"explicitFolding.debug": {
"type": "boolean",
"default": false,
"description": "Output debug logs.",
"scope": "language-overridable"
},
"explicitFolding.delay": {
"type": "number",
"default": 1000,
"description": "Delay used to defer the registration of the folding providers.",
"scope": "language-overridable"
},
"explicitFolding.notification": {
"type": "string",
"default": "minor",
"enum": [
"none",
"major",
"minor",
"patch"
],
"enumDescriptions": [
"The new version notification won't be shown anymore.",
"The new version notification will be shown only with a new major version",
"The new version notification will be shown only with a new minor version",
"The new version notification will always be shown"
]
},
"explicitFolding.perFiles": {
"type": "object",
"description": "Rules to apply to specific files",
"default": {},
"scope": "language-overridable"
},
"explicitFolding.rules": {
"description": "Rules that will determine the folding ranges.",
"default": [],
"scope": "language-overridable"
},
"explicitFolding.wildcardExclusions": {
"type": "array",
"default": [],
"description": "List of languages on which to not apply the wildcard rule (*)."
}
}
}
},
"extensionKind": [
"workspace"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#373b41",
"theme": "dark"
},
"categories": [
"Other"
],
"keywords": [
"folding"
]
}