forked from lharri73/DBC-Language-Syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.12 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
{
"name": "dbc",
"displayName": "DBC Language Syntax",
"description": "Provides VS Code support for CAN DBC files",
"repository": {
"tpye": "git",
"url": "https://github.com/lharri73/DBC-Language-Syntax"
},
"license": "GPL-2.0-only",
"version": "1.2.3",
"publisher": "lharri73",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Language Packs"
],
"keywords": [
"can",
"candb",
"dbc",
"vector",
"canbus"
],
"icon": "res/image.png",
"activationEvents": [
"onLanguage:dbc"
],
"main": "./client/out/extension",
"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."
}
}
}
},
"scripts": {
"vscode:prepublish": "make",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ../"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^12.19.9",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"js-yaml": "^3.14.1",
"mocha": "^8.1.1",
"typescript": "^4.0.2"
},
"dependencies": {
"jison": "^0.4.18"
},
"__metadata": {
"id": "92ea9bed-7f15-4d90-a0ab-8ff9481c55e9",
"publisherDisplayName": "Landon Harris",
"publisherId": "8bcdfeae-f8a0-4401-944b-f6c335536b5a"
}
}