-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.19 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
{
"name": "vscode-arcadia",
"displayName": "vscode-arcadia",
"description": "",
"version": "0.0.1",
"publisher": "worrel",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:clojure",
"onCommand:arcadia.replStart"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "arcadia.replStart",
"title": "Arcadia: REPL - Start"
},{
"command": "arcadia.replSendLine",
"title": "Arcadia: REPL - Send Line"
},{
"command": "arcadia.replSendSelection",
"title": "Arcadia: REPL - Send Selection"
},{
"command": "arcadia.replSendFile",
"title": "Arcadia: REPL - Send File"
},{
"command": "arcadia.replSendRegion",
"title": "Arcadia: REPL - Send Region"
}],
"configuration": {
"type": "object",
"title": "Arcadia Configuration",
"properties": {
"arcadia.replHost": {
"type": "string",
"default": "localhost",
"description": "REPL host"
},
"arcadia.replPort": {
"type": "number",
"default": 11211,
"description": "REPL port"
}
}
},
"keybindings": [{
"command": "arcadia.replSendLine",
"key": "ctrl+, l",
"mac": "ctrl+, l"
},{
"command": "arcadia.replSendSelection",
"key": "ctrl+, s",
"mac": "ctrl+, s"
},{
"command": "arcadia.replSendFile",
"key": "ctrl+, f",
"mac": "ctrl+, f"
},{
"command": "arcadia.replSendRegion",
"key": "ctrl+enter",
"mac": "ctrl+enter"
}]
},
"scripts": {
"preinstall": "lein cljsbuild once",
"vscode:prepublish": "lein cljsbuild once",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
}
}