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
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 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
{
"name": "overmind-devtools-vscode",
"displayName": "Overmind Devtools VSCode",
"description": "Devtools for Overmind",
"publisher": "christianalfoni",
"version": "0.0.1",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:overmind-devtools.start",
"onWebviewPanel:overmindDevtools"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Overmind Devtools",
"type": "object",
"properties": {
"overmind-devtools.port": {
"default": 3031,
"description": "Port for devtools backend server",
"type": "number"
},
"overmind-devtools.verbose": {
"default": "",
"description": "Toggles verbose logging",
"type": "boolean"
}
}
},
"commands": [
{
"category": "Overmind Devtools",
"command": "overmind-devtools.start",
"title": "Start"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"build": "rimraf devtoolsDist && cp -R ../overmind-devtools-client/dist devtoolsDist"
},
"devDependencies": {
"@types/node": "^10.12.21",
"tslint": "^5.12.1",
"vscode": "^1.1.34"
}
}