forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2 KB
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
{
"name": "overmind-devtools-vscode",
"displayName": "Overmind Devtools VSCode",
"description": "Devtools for Overmind",
"publisher": "christianalfoni",
"version": "0.0.24",
"repository": {
"type": "git",
"url": "https://github.com/cerebral/overmind.git"
},
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:overmind-devtools.start",
"onWebviewPanel:overmindDevtools"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Overmind Devtools",
"type": "object",
"properties": {
"overmind.port": {
"default": 3031,
"description": "Port for devtools backend server",
"type": "number"
},
"overmind.devmode.url": {
"default": "http://localhost:8080/bundle.js",
"description": "Where to look for overmind-devtools-client in devmode",
"type": "string"
},
"overmind.devmode.enabled": {
"default": false,
"description": "Enable devmode. Will serve client from specified url",
"type": "boolean"
},
"overmind.logging.verbose": {
"default": false,
"description": "Toggles verbose logging",
"type": "boolean"
}
}
},
"commands": [
{
"category": "Overmind Devtools",
"command": "overmind-devtools.start",
"title": "Start"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"build": "rimraf devtoolsDist && cp -R ../overmind-devtools-client/dist devtoolsDist",
"distribute": "npm run build && vsce publish -p $TOKEN"
},
"devDependencies": {
"@types/node": "^12.11.6",
"tslint": "^5.12.1",
"vscode": "^1.1.34"
},
"peerDependencies": {
"overmind-devtools-client": "next"
}
}