-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
75 lines (75 loc) · 1.9 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
{
"name": "vscode-redux-devtools",
"displayName": "Redux DevTools",
"description": "vscode redux devtools wrapper",
"icon": "logo/128x128.png",
"version": "1.0.2",
"publisher": "jingkaizhao",
"author": {
"name": "Jingkai Zhao",
"email": "jingkai.zhao@foxmail.com"
},
"license": "MIT",
"homepage": "https://github.com/jkzing/vscode-redux-devtools",
"repository": {
"type": "git",
"url": "https://github.com/jkzing/vscode-redux-devtools"
},
"bugs": {
"url": "https://github.com/jkzing/vscode-redux-devtools/issues"
},
"galleryBanner": {
"color": "#35364E",
"theme": "dark"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Debuggers"
],
"activationEvents": [
"onCommand:extension.openReduxDevtools"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.openReduxDevtools",
"title": "Redux Devtools: Open Devtool to the Side"
}
],
"configuration": {
"type": "object",
"title": "Redux Devtools Configuration",
"properties": {
"reduxdev.hostname": {
"type": "string",
"default": "localhost",
"description": "The hostname your remotedev server started on."
},
"reduxdev.port": {
"type": "number",
"default": 8000,
"description": "The socket port for Redux Devtools to listen."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"tslint": "^5.12.1",
"mocha": "^2.3.3",
"@types/node": "^10.12.21",
"@types/mocha": "^2.2.42"
},
"dependencies": {}
}