-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "convex-vscode",
"displayName": "Convex",
"description": "Convex support.",
"version": "0.1.0",
"publisher": "pedrorgirardi",
"license": "MIT",
"engines": {
"vscode": "^1.22.0"
},
"main": "./extension",
"contributes": {
"languages": [
{
"id": "convex",
"aliases": [
"Convex",
"convex"
],
"extensions": [
".con",
".cvx",
".convex"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "convex",
"scopeName": "source.clojure",
"path": "./syntaxes/clojure.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:convex"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
},
"scripts": {
"clean": "rm -rf .shadow-cljs",
"watch": "npx shadow-cljs watch :extension",
"compile": "npx shadow-cljs compile :extension",
"release": "npx shadow-cljs release :extension",
"clj-repl": "npx shadow-cljs clj-repl",
"cljs-repl": "npx shadow-cljs cljs-repl :extension",
"vscode:prepublish": "npm run clean & npm run release",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"shadow-cljs": "^2.11.4",
"vscode": "^1.1.35"
}
}