forked from vuejs/devtools-v6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "@vue/devtools",
"version": "6.2.1",
"description": "StandAlone vue-devtools",
"repository": {
"url": "https://github.com/vuejs/vue-devtools.git",
"type": "git",
"directory": "packages/shell-electron"
},
"bin": {
"vue-devtools": "./bin.js"
},
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"start": "node bin.js",
"dev:client": "webpack --watch",
"dev:node": "webpack --watch --config webpack.node.config.js",
"build": "npm run build:client && npm run build:node",
"build:client": "rimraf ./build && cross-env NODE_ENV=production webpack",
"build:node": "rimraf ./build-node && cross-env NODE_ENV=production webpack --config webpack.node.config.js"
},
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"electron": "^12.0.6",
"express": "^4.17.1",
"ip": "^1.1.5",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.1",
"utf-8-validate": "^5.0.9"
},
"devDependencies": {
"@vue-devtools/app-backend-core": "^0.0.0",
"@vue-devtools/app-frontend": "^0.0.0",
"@vue-devtools/build-tools": "^0.0.0",
"@vue-devtools/shared-utils": "^0.0.0",
"rimraf": "^3.0.2",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
}
}