-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "talky",
"displayName": "Talky",
"description": "Talk to a Clojure socket-based REPL.",
"version": "0.8.0-dev",
"publisher": "pedrorgirardi",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/pedrorgirardi/talky.git"
},
"activationEvents": [],
"main": "./extension",
"contributes": {
"commands": [
{
"title": "Connect",
"category": "Talky",
"command": "talky.connect"
},
{
"title": "Disconnect",
"category": "Talky",
"command": "talky.disconnect"
},
{
"title": "Send Selection to REPL",
"category": "Talky",
"command": "talky.sendSelectionToREPL"
}
]
},
"scripts": {
"clean": "rm -rf .shadow-cljs/",
"watch": "npx shadow-cljs watch :extension",
"compile": "npx shadow-cljs compile :extension",
"release": "npx shadow-cljs release :extension",
"package": "npx @vscode/vsce package"
},
"devDependencies": {
"shadow-cljs": "^2.28.10",
"@vscode/vsce": "^2.29.0"
}
}