forked from zokugun/vscode-explicit-folding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.56 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.56 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
{
"name": "explicit-folding",
"displayName": "Explicit Folding",
"description": "Manually controls how and where to fold your code",
"version": "0.14.8",
"publisher": "zokugun",
"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/issues"
},
"author": {
"name": "Baptiste Augrain",
"email": "daiyam@zokugun.org"
},
"license": "MIT",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Explicit Folding configuration",
"properties": {
"explicitFolding.rules": {
"description": "Markers that will determine the folding ranges.",
"scope": "language-overridable"
},
"explicitFolding.debug": {
"type": "boolean",
"default": false,
"description": "Output debug logs.",
"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.delay": {
"type": "number",
"default": 1000,
"description": "Delay used to defer the registration of the folding providers.",
"scope": "language-overridable"
}
}
}
},
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@daiyam/regexp": "^0.1.4"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/glob": "^7.1.3",
"@types/klaw-sync": "^6.0.0",
"@types/mocha": "^8.2.2",
"@types/node": "^10.17.17",
"@types/vscode": "^1.23.0",
"chai": "^4.3.4",
"glob": "^7.1.6",
"klaw-sync": "^6.0.0",
"mocha": "^8.3.2",
"typescript": "^4.2.4",
"vscode-test": "^1.5.2",
"yaml": "^1.10.2"
},
"keywords": [
"folding"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#373b41",
"theme": "dark"
},
"__metadata": {
"id": "6ccb8d60-0e25-4a00-8f74-e8b9ef6133ce",
"publisherDisplayName": "zokugun",
"publisherId": "7981b718-ae65-4fd8-ad42-96331c0f9872"
}
}