forked from plexsystems/vscode-protolint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "vscode-protolint-rcginc",
"displayName": "Protolint (Lite)",
"version": "1.1.2",
"repository": {
"url": "https://github.com/easternmotors/vscode-protolint"
},
"license": "MIT",
"publisher": "rcginc",
"main": "./out/extension",
"scripts": {
"build": "yarn compile && yarn package",
"compile": "tsc",
"format": "yarn prettier . --write",
"package": "vsce package --no-dependencies --out ./out --yarn",
"publish": "vsce publish --packagePath ./out/*.vsix --yarn"
},
"contributes": {
"configuration": {
"type": "object",
"title": "Protolint",
"properties": {
"protolint.configPath": {
"scope": "resource",
"type": "string",
"required": ["protolint.configPath"],
"description": "Path to a protolint configuration file relative to the VSCode workspace folder"
},
"protolint.path": {
"scope": "resource",
"type": "string",
"required": ["protolint.path"],
"description": "Path to a protolint executable file relative to the VSCode workspace folder"
}
}
}
},
"activationEvents": [
"onStartupFinished"
],
"devDependencies": {
"@tsconfig/node-lts-strictest": "18.12.1",
"@types/node": "20.11.20",
"@types/vscode": "1.86.0",
"@vscode/vsce": "2.23.0",
"prettier": "3.2.5",
"sort-package-json": "2.8.0",
"typescript": "5.3.3"
},
"packageManager": "yarn@4.1.0",
"engines": {
"node": "20.11.1",
"vscode": "^1.86.0",
"yarn": "4.1.0"
},
"icon": "out/logo.png"
}