-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.58 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
{
"name": "corex-script",
"displayName": "Corex",
"description": "Official VSCode extension for Corex Script language.",
"version": "1.0.0",
"publisher": "Corex Inc.",
"icon": "icons/corex-logo.png",
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"main": "./client/out/extension.js",
"contributes": {
"configurationDefaults": {
"[corex]": {
"editor.wordBasedSuggestions": "off"
}
},
"commands": [
{
"command": "corex.reloadDocs",
"title": "Corex: Reload Documentation"
}
],
"languages": [
{
"id": "corex",
"aliases": [
"Corex",
"corex"
],
"extensions": [
".cx"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/corex-logo.png",
"dark": "./icons/corex-logo.png"
}
}
],
"grammars": [
{
"language": "corex",
"scopeName": "source.corex",
"path": "./syntaxes/corex.tmLanguage.json"
}
]
},
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"dependencies": {
"adm-zip": "^0.5.17",
"node-fetch": "^3.3.2",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/node": "^18.19.130",
"@types/node-fetch": "^2.6.13",
"@types/vscode": "^1.100.0",
"typescript": "^5.0.0"
}
}