-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
113 lines (113 loc) · 3.31 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
108
109
110
111
112
113
{
"name": "serenity-dsl-syntaxhighlight",
"publisher": "kleinesfilmroellchen",
"repository": {
"url": "https://github.com/kleinesfilmroellchen/serenity-dsl-syntaxhighlight",
"type": "git"
},
"displayName": "SerenityOS DSL Syntax Highlight",
"description": "Syntax Highlighting for the DSLs in SerenityOS",
"version": "0.3.1",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"Serenity",
"SerenityOS",
"Inter Process Communication",
"IPC",
"Graphics Markup Language",
"GML",
"IDL",
"Web IDL"
],
"contributes": {
"languages": [
{
"id": "serenity-gml",
"aliases": [
"Graphics Markup Language (SerenityOS)",
"serenity-gml"
],
"extensions": [
".gml"
],
"configuration": "./language-config-gml.json"
},
{
"id": "serenity-ipc",
"aliases": [
"Inter Process Communication Endpoint (SerenityOS)",
"serenity-ipc"
],
"extensions": [
".ipc"
],
"configuration": "./language-config-ipc.json"
},
{
"id": "web-idl-serenity",
"aliases": [
"Web IDL (SerenityOS)",
"web-idl",
"idl"
],
"extensions": [
".idl"
],
"configuration": "./language-config-idl.json"
},
{
"id": "libjs-bytecode-serenity",
"aliases": [
"LibJS Bytecode (SerenityOS)"
],
"extensions": [],
"configuration": "./language-config-libjs-bytecode.json"
}
],
"grammars": [
{
"language": "serenity-gml",
"scopeName": "source.serenity-gml",
"path": "./syntaxes/serenity-gml.tmLanguage.json"
},
{
"language": "serenity-ipc",
"scopeName": "source.serenity-ipc",
"path": "./syntaxes/serenity-ipc.tmLanguage.json"
},
{
"language": "web-idl-serenity",
"scopeName": "source.serenity-idl",
"path": "./syntaxes/serenity-web-idl.tmLanguage.json"
},
{
"language": "libjs-bytecode-serenity",
"scopeName": "source.libjs.bytecode",
"path": "./syntaxes/serenity-libjs-bytecode.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:serenity-gml"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "14.x",
"@types/vscode": "^1.58.0",
"@types/tmp": "^0.2.1",
"typescript": "^4.5.4"
},
"dependencies": {
"tmp": "^0.2.1"
}
}