-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
233 lines (233 loc) · 7.27 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
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
{
"name": "cratesx",
"displayName": "cratesx",
"description": "Helps Rust developers managing dependencies with Cargo.toml.",
"version": "0.8.0",
"publisher": "nemurubaka",
"author": {
"name": "nemurubaka",
"email": "cijiugechu@gmail.com"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/cijiugechu/cratesx/issues",
"email": "cijiugechu@gmail.com"
},
"homepage": "https://github.com/cijiugechu/cratesx/blob/main/README.md",
"engines": {
"vscode": "^1.79.1"
},
"repository": {
"type": "git",
"url": "https://github.com/cijiugechu/cratesx.git"
},
"icon": "icon.png",
"keywords": [
"rust",
"crates",
"cargo",
"toml"
],
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onLanguage:toml",
"workspaceContains:*/Cargo.toml"
],
"contributes": {
"commands": [
{
"command": "cratesx.replaceVersion",
"title": "Do not call manually ! Replace Version of the provided dependency",
"category": "👆 CratesX"
},
{
"command": "cratesx.retry",
"title": "Retry to fetch Cargo.toml",
"category": "👆 CratesX"
},
{
"command": "cratesx.updateAll",
"title": "Update All dependencies of the Cargo.toml",
"category": "👆 CratesX"
}
],
"configuration": {
"type": "object",
"title": "CratesX",
"properties": {
"cratesx.listPreReleases": {
"type": "boolean",
"scope": "resource",
"default": false,
"description": "If true, pre-release versions will be available."
},
"cratesx.indexServerURL": {
"type": "string",
"scope": "resource",
"description": "URL of the index server. Default value goes to official sparse index. Alternative values would be onpremise index servers.",
"default": "https://index.crates.io"
},
"cratesx.errorDecorator": {
"type": "string",
"scope": "resource",
"default": "❗️❗️❗️",
"description": "The text to show when a dependency has errors."
},
"cratesx.errorDecoratorCss": {
"type": "object",
"default": null,
"properties": {
"after": {
"type": "object",
"default": null,
"scope": "resource",
"description": "Text styling",
"properties": {
"color": {
"type": "string",
"scope": "resource",
"default": "#ffffffff",
"format": "color",
"description": "css color"
},
"border": {
"type": "string",
"scope": "resource",
"default": "2px ",
"description": "css border"
},
"backgroundColor": {
"type": "string",
"scope": "resource",
"default": "#00000000",
"format": "color",
"description": "css background-color"
}
}
},
"description": "Text that appears at the end of the line"
},
"description": "CSS to be applied to a line when there is a dependency error"
},
"cratesx.incompatibleDecorator": {
"type": "string",
"scope": "resource",
"default": "❌ ${version}",
"description": "The text template to show when a dependency is not semver compatible. ${version} will be replaced by the latest version info."
},
"cratesx.incompatibleDecoratorCss": {
"type": "object",
"default": null,
"properties": {
"after": {
"type": "object",
"default": null,
"scope": "resource",
"description": "Text styling",
"properties": {
"color": {
"type": "string",
"scope": "resource",
"default": "#ffffffff",
"format": "color",
"description": "css color"
},
"border": {
"type": "string",
"scope": "resource",
"default": "",
"description": "css border"
},
"backgroundColor": {
"type": "string",
"scope": "resource",
"default": "#00000000",
"format": "color",
"description": "css background-color"
}
}
}
},
"description": "CSS to be applied to an incompatible line"
},
"cratesx.compatibleDecorator": {
"type": "string",
"scope": "resource",
"default": "✅",
"description": "The text template to show when a dependency is semver compatible. ${version} will be replaced by the latest version info."
},
"cratesx.compatibleDecoratorCss": {
"type": "object",
"default": null,
"properties": {
"after": {
"type": "object",
"default": null,
"scope": "resource",
"description": "Text styling",
"properties": {
"color": {
"type": "string",
"scope": "resource",
"default": "#ffffffff",
"format": "color",
"description": "css color"
},
"border": {
"type": "string",
"scope": "resource",
"default": null,
"description": "css border"
},
"backgroundColor": {
"type": "string",
"scope": "resource",
"default": "#00000000",
"format": "color",
"description": "css background-color"
}
}
}
},
"description": "CSS to be applied to a compatible line"
}
}
}
},
"main": "./out/main.js",
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"build": "vsce package",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node --metafile=meta.json",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"lint": "oxlint ./src",
"fmt": "biome format --write ."
},
"types": "vscode",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.3.3",
"@types/semver": "^7.5.8",
"@types/vscode": "^1.79.1",
"@vscode/test-electron": "^2.3.3",
"@vscode/vsce": "^2.31.1",
"esbuild": "0.18.11",
"glob": "^10.3.1",
"mocha": "^10.2.0",
"oxlint": "^0.6.1",
"typescript": "^5.1.6"
},
"dependencies": {
"node-cache": "5.1.2",
"p-limit": "^6.1.0",
"semver": "7.6.3",
"undici": "^6.19.8"
}
}