Skip to content

Commit 01a4ab1

Browse files
author
Georg Hartmann
committed
Extension: add code
1 parent 9f3c6f5 commit 01a4ab1

File tree

2 files changed

+71
-70
lines changed

2 files changed

+71
-70
lines changed
7.18 KB
Loading
Lines changed: 71 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,74 @@
11
{
2-
"name": "overmind-devtools-vscode",
3-
"displayName": "Overmind Devtools VSCode",
4-
"description": "Devtools for Overmind",
5-
"publisher": "christianalfoni",
6-
"version": "0.0.26",
7-
"repository": {
8-
"type": "git",
9-
"url": "https://github.com/cerebral/overmind.git"
10-
},
11-
"engines": {
12-
"vscode": "^1.35.0"
13-
},
14-
"categories": [
15-
"Other"
16-
],
17-
"activationEvents": [
18-
"onCommand:overmind-devtools.start",
19-
"onWebviewPanel:overmindDevtools"
20-
],
21-
"main": "./dist/extension.js",
22-
"contributes": {
23-
"configuration": {
24-
"title": "Overmind Devtools",
25-
"type": "object",
26-
"properties": {
27-
"overmind.port": {
28-
"default": 3031,
29-
"description": "Port for devtools backend server",
30-
"type": "number"
31-
},
32-
"overmind.devmode.url": {
33-
"default": "http://localhost:8080/bundle.js",
34-
"description": "Where to look for overmind-devtools-client in devmode",
35-
"type": "string"
36-
},
37-
"overmind.devmode.enabled": {
38-
"default": false,
39-
"description": "Enable devmode. Will serve client from specified url",
40-
"type": "boolean"
2+
"name": "overmind-devtools-vscode",
3+
"displayName": "Overmind Devtools VSCode",
4+
"description": "Devtools for Overmind",
5+
"publisher": "christianalfoni",
6+
"version": "0.0.26",
7+
"icon": "./logo_simplified_glow.png",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/cerebral/overmind.git"
11+
},
12+
"engines": {
13+
"vscode": "^1.35.0"
14+
},
15+
"categories": [
16+
"Other"
17+
],
18+
"activationEvents": [
19+
"onCommand:overmind-devtools.start",
20+
"onWebviewPanel:overmindDevtools"
21+
],
22+
"main": "./dist/extension.js",
23+
"contributes": {
24+
"configuration": {
25+
"title": "Overmind Devtools",
26+
"type": "object",
27+
"properties": {
28+
"overmind.port": {
29+
"default": 3031,
30+
"description": "Port for devtools backend server",
31+
"type": "number"
32+
},
33+
"overmind.devmode.url": {
34+
"default": "http://localhost:8080/bundle.js",
35+
"description": "Where to look for overmind-devtools-client in devmode",
36+
"type": "string"
37+
},
38+
"overmind.devmode.enabled": {
39+
"default": false,
40+
"description": "Enable devmode. Will serve client from specified url",
41+
"type": "boolean"
42+
},
43+
"overmind.logging.verbose": {
44+
"default": false,
45+
"description": "Toggles verbose logging",
46+
"type": "boolean"
47+
}
48+
}
4149
},
42-
"overmind.logging.verbose": {
43-
"default": false,
44-
"description": "Toggles verbose logging",
45-
"type": "boolean"
46-
}
47-
}
50+
"commands": [
51+
{
52+
"category": "Overmind Devtools",
53+
"command": "overmind-devtools.start",
54+
"title": "Start"
55+
}
56+
]
57+
},
58+
"scripts": {
59+
"vscode:prepublish": "webpack --mode production",
60+
"compile": "webpack --mode none",
61+
"watch": "webpack --mode none --watch",
62+
"postinstall": "node ./node_modules/vscode/bin/install",
63+
"build": "rimraf devtoolsDist && cp -R ../overmind-devtools-client/dist devtoolsDist",
64+
"distribute": "npm run build && vsce publish -p $TOKEN"
65+
},
66+
"devDependencies": {
67+
"@types/node": "^12.11.6",
68+
"tslint": "^5.12.1",
69+
"vscode": "^1.1.36"
4870
},
49-
"commands": [
50-
{
51-
"category": "Overmind Devtools",
52-
"command": "overmind-devtools.start",
53-
"title": "Start"
54-
}
55-
]
56-
},
57-
"scripts": {
58-
"vscode:prepublish": "webpack --mode production",
59-
"compile": "webpack --mode none",
60-
"watch": "webpack --mode none --watch",
61-
"postinstall": "node ./node_modules/vscode/bin/install",
62-
"build": "rimraf devtoolsDist && cp -R ../overmind-devtools-client/dist devtoolsDist",
63-
"distribute": "npm run build && vsce publish -p $TOKEN"
64-
},
65-
"devDependencies": {
66-
"@types/node": "^12.11.6",
67-
"tslint": "^5.12.1",
68-
"vscode": "^1.1.36"
69-
},
70-
"peerDependencies": {
71-
"overmind-devtools-client": "next"
72-
}
73-
}
71+
"peerDependencies": {
72+
"overmind-devtools-client": "next"
73+
}
74+
}

0 commit comments

Comments
 (0)