forked from serayuzgur/crates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.66 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
{
"name": "crates",
"displayName": "crates",
"description": "Helps Rust developers managing dependencies with Cargo.toml.",
"version": "0.6.3",
"publisher": "serayuzgur",
"author": {
"name": "serayuzgur",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/serayuzgur/crates/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/serayuzgur/crates/blob/master/README.md",
"engines": {
"vscode": "^1.79.1"
},
"repository": {
"type": "git",
"url": "https://github.com/serayuzgur/crates.git"
},
"icon": "icon.png",
"keywords": [
"rust",
"crates",
"cargo",
"toml"
],
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onLanguage:toml",
"workspaceContains:Cargo.toml"
],
"contributes": {
"commands": [
{
"command": "crates.replaceVersion",
"title": "Do not call manually ! Replace Version of the provided dependency",
"category": "👆 Crates"
},
{
"command": "crates.retry",
"title": "Retry to fetch Cargo.toml",
"category": "👆 Crates"
},
{
"command": "crates.updateAll",
"title": "Update All dependencies of the Cargo.toml",
"category": "👆 Crates"
}
],
"configuration": {
"type": "object",
"title": "Crates",
"properties": {
"crates.listPreReleases": {
"type": "boolean",
"scope": "resource",
"default": false,
"description": "If true, pre-release versions will be available."
},
"crates.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 (e.g. https://api.crates-vsc.space).",
"default": "https://index.crates.io"
},
"crates.errorDecorator": {
"type": "string",
"scope": "resource",
"default": "❗️❗️❗️",
"description": "The text to show when a dependency has errors."
},
"crates.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."
},
"crates.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."
}
}
}
},
"main": "./out/main.js",
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"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 ./"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.3.3",
"@types/vscode": "^1.79.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vscode/test-electron": "^2.3.3",
"esbuild": "0.18.11",
"eslint": "^8.44.0",
"glob": "^10.3.1",
"mocha": "^10.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"node-cache": "5.1.2",
"semver": "7.5.3"
}
}