-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 2.61 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 2.61 KB
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
{
"name": "dbc",
"displayName": "DBC Language Syntax",
"description": "Provides VS Code support for CAN DBC files",
"repository": {
"type": "git",
"url": "https://github.com/lharri73/DBC-Language-Syntax"
},
"license": "GPL-2.0-only",
"version": "2.0.0",
"publisher": "lharri73",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Language Packs"
],
"keywords": [
"can",
"candb",
"dbc",
"vector",
"canbus",
"j1939"
],
"icon": "res/image.png",
"galleryBanner": {
"color": "#77c3e4",
"theme": "dark"
},
"activationEvents": [
"onLanguage:dbc"
],
"main": "./client/build/ext-src/serverPack.js",
"contributes": {
"languages": [
{
"id": "dbc",
"aliases": [
"DBC",
"dbc"
],
"extensions": [
".dbc"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dbc",
"scopeName": "source.dbc",
"path": "./syntaxes/dbc.tmLanguage.json"
}
],
"snippets": [
{
"language": "dbc",
"path": "snippets/snippets.json"
}
],
"configuration": {
"title": "DBC Language",
"properties": {
"dbc.silenceMapWarnings": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Silence warnings generated from references to undefined objects."
},
"dbc.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"commands": [
{
"command": "dbc.showPreview",
"title": "Open DBC Preview",
"category": "dbc",
"icon": {
"light": "res/open-preview_light.svg",
"dark": "res/open-preview_dark.svg"
}
}
],
"menus": {
"editor/title": [
{
"when": "editorLangId == 'dbc' && dbcLangSyntax.clientActive",
"command": "dbc.showPreview",
"group": "navigation@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "make",
"build": "make",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ../dbcLib && npm install"
},
"devDependencies": {
"js-yaml": "^3.14.1",
"ts-loader": "^8.1.0",
"vsce": "^2.8.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.7.2"
},
"__metadata": {
"id": "92ea9bed-7f15-4d90-a0ab-8ff9481c55e9",
"publisherDisplayName": "Landon Harris",
"publisherId": "8bcdfeae-f8a0-4401-944b-f6c335536b5a"
},
"dependencies": {
"ansi-regex": "^6.0.1",
"glob-parent": "^6.0.2",
"lodash": "^4.17.21",
"minimist": "^1.2.6"
}
}