-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.42 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
{
"name": "protobuf",
"displayName": "protobuf",
"description": "protocol buffer language support",
"icon": "assets/icon.png",
"publisher": "weakptr",
"repository": {
"url": "https://github.com/nnnewb/vscode-protobuf"
},
"version": "0.0.1",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:proto"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "ProtoBuf",
"properties": {
"protobuf.importPath": {
"type": [
"array",
"null"
],
"default": [],
"description": "Import search paths.",
"items": {
"type": "string"
}
}
}
},
"configurationDefaults": {
"[proto]": {
"editor.semanticHighlighting.enabled": true
}
},
"languages": [
{
"id": "proto",
"extensions": [
".proto"
],
"aliases": [
"Protocol Buffers"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "proto",
"scopeName": "source.proto",
"path": "./syntaxes/proto3.tmLanguage.json"
},
{
"scopeName": "markdown.codeblock.proto",
"path": "./syntaxes/proto3.codeblock.json",
"injectTo": [
"text.html.markdown"
]
}
],
"snippets": [
{
"language": "proto",
"path": "./snippets/proto3.json"
},
{
"language": "proto",
"path": "./snippets/google-api.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"prepare": "husky install",
"package": "vsce package"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/node": "14.x",
"@types/vscode": "^1.63.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.5.4",
"vscode-test": "^1.6.1"
},
"dependencies": {
"web-tree-sitter": "^0.19.4"
}
}