-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 1.62 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
{
"name": "racket",
"displayName": "Racket",
"description": "Racket syntax highlighting and basic code completion",
"version": "1.0.0",
"preview": true,
"publisher": "karyfoundation",
"icon": "icon.png",
"engines": {
"vscode": "^1.22.0"
},
"repository": {
"type": "git",
"url": "https://github.com/karyfoundation/racket-vscode"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:racket",
"onCommand:extension.sayHello"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "Racket configuration",
"properties": {
"racket.racketPath": {
"type": "string",
"description": "The path to the racket executable"
}
}
},
"commands": [
{
"command": "racket.createTerminal",
"title": "Create racket terminal"
},
{
"command": "racket.run",
"title": "Racket run"
}
],
"languages": [
{
"id": "racket",
"extensions": [
".rkt"
],
"aliases": [
"Racket",
"racket"
],
"filenames": [
".rkt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "racket",
"scopeName": "source.racket",
"path": "./syntaxes/racket.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm compile",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.4",
"mocha": "^5.2.0",
"typescript": "^2.9.2",
"vscode": "1.1.16"
}
}