-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.87 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 1.87 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
{
"name": "c0-lsp",
"displayName": "C0 VSCode Language Support",
"publisher": "15122staff",
"description": "C0 IDE features for VSCode",
"repository": "https://github.com/CalLavicka/c0-vscode-extension",
"version": "2.3.2",
"icon": "122.png",
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:C0"
],
"main": "./client/out/extension",
"contributes": {
"themes": [
{
"label": "C0-dark",
"uiTheme": "vs-dark",
"path": "./themes/C0-dark.color-theme.json"
},
{
"label": "C0-light",
"uiTheme": "vs",
"path": "./themes/C0-light.color-theme.json"
}
],
"languages": [
{
"id": "C0",
"aliases": [
"C0",
"c0"
],
"extensions": [
".c0",
".c1",
".h0",
".h1"
],
"configuration": "./language-configuration.json"
},
{
"id": "Clac",
"extensions": [
".clac"
],
"configuration": "./language-configuration.json"
},
{
"id": "BC0",
"extensions": [
".bc0",
".bc1"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "C0",
"scopeName": "source.c0",
"path": "./syntaxes/C0.tmLanguage.json"
},
{
"language": "Clac",
"scopeName": "source.clac",
"path": "./syntaxes/Clac.tmLanguage.json"
},
{
"language": "BC0",
"scopeName": "source.bc0",
"path": "./syntaxes/BC0.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "cd server && npm run nearley && cd .. && tsc -b && cp -r c0lib server/out/",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^8.0.0",
"npm-run-all": "^4.1.3",
"tslint": "^5.16.0",
"typescript": "^4.5.5"
}
}