-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
193 lines (193 loc) · 5.92 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"name": "clojure",
"displayName": "Clojure",
"description": "Clojure nREPL support for Visual Studio Code",
"version": "0.13.2",
"publisher": "avli",
"author": {
"name": "Andrey Lisin",
"email": "[email protected]"
},
"contributors": [
{
"name": "Thiago Almeida",
"email": "[email protected]"
},
{
"name": "Mike Ball",
"email": "[email protected]"
},
{
"name": "Egor Yurtaev",
"email": "[email protected]"
},
{
"name": "Mark Hansen",
"email": "[email protected]"
},
{
"name": "Fabian Achammer",
"email": "[email protected]"
},
{
"name": "Nikita Prokopov",
"email": "[email protected]"
},
{
"name": "Frederik Ring",
"email": "[email protected]"
},
{
"name": "Alessandro Decina",
"email": "[email protected]"
},
{
"name": "Marc O'Morain",
"email": "[email protected]"
},
{
"name": "Andrey Bogoyavlensky",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"vscode": "^1.14.0"
},
"recommendations": [
"tonsky.clojure-warrior"
],
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onLanguage:clojure"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "clojureVSCode.eval",
"title": "Clojure: Eval"
},
{
"command": "clojureVSCode.evalAndShowResult",
"title": "Clojure: Eval and show the result"
},
{
"command": "clojureVSCode.testNamespace",
"title": "Clojure: Test the current namespace"
},
{
"command": "clojureVSCode.runAllTests",
"title": "Clojure: Run all tests"
},
{
"command": "clojureVSCode.manuallyConnectToNRepl",
"title": "Clojure: Connect to a running nREPL"
},
{
"command": "clojureVSCode.startNRepl",
"title": "Clojure: Start nREPL"
},
{
"command": "clojureVSCode.stopDisconnectNRepl",
"title": "Clojure: Disconnect from nREPL"
}
],
"views": {
"test": [
{
"id": "clojure",
"name": "Clojure"
}
]
},
"configuration": {
"type": "object",
"title": "Clojure extension configuration",
"properties": {
"clojureVSCode.autoStartNRepl": {
"type": "boolean",
"default": true,
"description": "Automatically run an embedded nREPL instance and connect to it on Clojure file open."
},
"clojureVSCode.formatOnSave": {
"type": "boolean",
"default": false,
"description": "Format the code on save."
},
"clojureVSCode.cljfmtParameters": {
"type": "string",
"description": "Parameters which will be passed to cljfmt.",
"default": ""
},
"clojureVSCode.showResultInline": {
"type": "boolean",
"default": true,
"description": "Show evaluation result inline."
},
"clojureVSCode.ciderNReplVersion": {
"type": "string",
"default": "0.24.0",
"description": "Version of CIDER to use for the embedded nREPL."
},
"clojureVSCode.cljfmtVersion": {
"type": "string",
"default": "0.6.7",
"description": "Version of cljfmt to use for formatting Clojure files."
}
}
},
"colors": [
{
"id": "clojureVSCode.inlineResultBackground",
"description": "Background color of the inline result.",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "clojureVSCode.inlineResultForeground",
"description": "Foreground color of the inline result.",
"defaults": {
"dark": "#99999999",
"light": "#99999999",
"highContrast": "#99999999"
}
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/jszip": "^3.4.1",
"@types/mocha": "^2.2.48",
"@types/node": "^6.14.10",
"minimist": "^1.2.6",
"mocha": "^5.2.0",
"ts-loader": "^9.4.2",
"typescript": "^3.9.2",
"vscode": "^1.1.37",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"bencoder": "^0.0.5",
"cross-spawn": "^6.0.6",
"jszip": "^3.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/avli/clojureVSCode"
}
}