-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
package.json
76 lines (76 loc) · 3.05 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
76
{
"name": "vue-devtools",
"version": "6.6.4",
"private": true,
"description": "devtools for Vue.js!",
"workspaces": [
"packages/*"
],
"author": "Evan You",
"license": "MIT",
"homepage": "https://github.com/vuejs/vue-devtools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-devtools.git"
},
"bugs": {
"url": "https://github.com/vuejs/vue-devtools/issues"
},
"engines": {
"node": ">=8.10"
},
"scripts": {
"dev:vue2": "concurrently \"cd packages/shell-dev-vue2 && yarn dev\" \"cd packages/shell-host && yarn dev\"",
"dev:vue3": "concurrently \"cd packages/shell-dev-vue3 && yarn dev\" \"cd packages/shell-host && yarn dev\"",
"dev:chrome": "cd packages/shell-chrome && webpack --watch",
"dev:chrome:prod": "cd packages/shell-chrome && cross-env NODE_ENV=production webpack --watch",
"dev:firefox": "cd packages/shell-firefox && webpack --watch",
"dev:electron": "cd packages/shell-electron && npm run dev",
"build": "lerna run build",
"build:watch": "lerna run build --scope @vue-devtools/app-backend* --scope @vue-devtools/shared-* --scope @vue/devtools-api && lerna run build:watch --stream --no-sort --concurrency 99",
"lint": "eslint .",
"run:firefox": "web-ext run -s packages/shell-firefox -a dist -i src -u http://localhost:8090/target.html",
"zip": "node ./extension-zips.js",
"sign:firefox": "node ./sign-firefox.js",
"release": "npm run test && node release.js && npm run build && npm run zip && npm run pub",
"release:beta": "cross-env RELEASE_CHANNEL=beta npm run release && npm run sign:firefox",
"pub": "npm run pub:electron && npm run pub:api",
"pub:electron": "cd packages/shell-electron && npm publish",
"pub:api": "cd packages/api && npm publish",
"test": "npm run lint && npm run test:types:front",
"test:types:front": "tsc --noEmit",
"test:e2e": "cross-env PORT=4040 start-server-and-test dev:shell http://localhost:4040 test:e2e:run",
"test:e2e:run": "cypress run --config baseUrl=http://localhost:4040",
"test:open": "cypress open --config baseUrl=http://localhost:8100",
"docs:dev": "cd packages/docs && vitepress dev src",
"docs:build": "cd packages/docs && vitepress build src",
"docs:serve": "cd packages/docs && vitepress serve src"
},
"devDependencies": {
"@antfu/eslint-config": "^2.19.1",
"@tailwindcss/postcss7-compat": "^2.0.4",
"@types/chrome": "^0.0.139",
"@types/speakingurl": "^13.0.3",
"archiver": "^5.3.0",
"autoprefixer": "^9.1.5",
"concurrently": "^5.1.0",
"cross-env": "^5.2.0",
"cypress": "^3.1.0",
"eslint": "^9.3.0",
"execa": "^4.0.3",
"inquirer": "^6.2.0",
"lerna": "^4.0.0",
"postcss-nested": "^4.2.1",
"rimraf": "^3.0.2",
"semver": "^5.5.1",
"start-server-and-test": "^1.7.1",
"svg-inline-loader": "^0.8.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"vue-loader": "^17.2.2",
"webpack-dev-server": "^4.15.1"
},
"resolutions": {
"cypress": "=3.4.1",
"webpack-dev-server": "^4.15.1"
}
}