-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "cordy-language-support",
"displayName": "cordy-language-support",
"description": "Language Support for Cordy v0.3.1",
"version": "0.1.15",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"repository": "https://github.com/alcatrazEscapee/CordyLanguageSupport",
"main": "./out/extension.js",
"license": "MIT",
"contributes": {
"languages": [
{
"id": "cordy",
"aliases": [
"Cordy",
"cordy"
],
"extensions": [
".cor"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cordy",
"scopeName": "source.cordy",
"path": "./syntaxes/cordy.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@vscode/vsce": "^2.19.0",
"typescript": "^4.9.3"
}
}