-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "vue-devtools-plugins",
"version": "0.0.2",
"description": "vue-devtools plugin for vConsole & Eruda. Debug Vue.js anywhere",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack --watch",
"build:inject": "cd vue-devtools/packages/shell-host && yarn build",
"release": "npm version patch && cd packages && npm version patch && npm publish",
"serve3": "cd dev-vue3 && yarn serve",
"serve2": "cd dev && yarn serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zippowxk/vue-vconsole-devtools.git"
},
"keywords": [
"vue-devtools",
"vConsole",
"vconsole",
"vue",
"debug",
"vue.js",
"plugin",
"eruda",
"eruda-plugin",
"vconsole-plugin",
"cross-platform"
],
"author": "xinkai.wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zippowxk/vue-vconsole-devtools/issues"
},
"homepage": "https://github.com/Zippowxk/vue-vconsole-devtools#readme",
"devDependencies": {
"@types/speakingurl": "^13.0.3",
"@types/chrome": "*",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-loader": "^4.0.2",
"eslint-webpack-plugin": "^2.5.2",
"path": "^0.12.7",
"raw-loader": "^4.0.2",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.35.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.6.0"
},
"private": true,
"workspaces": [
"vue-devtools/packages/*"
]
}