-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.71 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
{
"name": "protoviewer",
"displayName": "protoviewer",
"description": "Display protofbuf files in VSCode.",
"version": "0.0.3",
"engines": {
"vscode": "^1.75.0"
},
"homepage": "https://github.com/mosuem/protoviewer",
"bugs": {
"url": "https://github.com/mosuem/protoviewer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mosuem/protoviewer"
},
"icon": "logo.png",
"categories": [
"Visualization"
],
"publisher": "mosum",
"keywords": [
"protobuf"
],
"main": "./out/src/extension",
"contributes": {
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"customEditors": [
{
"viewType": "protoviewer.preview",
"displayName": "Protobuf Preview",
"selector": [
{
"filenamePattern": "*.*pb"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint -c .eslintrc.json --ext .ts ./src",
"package": "vsce package"
},
"dependencies": {
"@types/vscode": "^1.46.0",
"protobufjs": "^7.3.2"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"mocha": "^10.1.0",
"prettier": "^2.0.4",
"typescript": "^3.7.3",
"vsce": "^2.15.0",
"vscode-dts": "^0.3.1",
"vscode-test": "^1.3.0"
},
"extensionKind": [
"ui"
]
}