forked from streaver/vue-web-extension-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "my-extension",
"version": "1.0.0",
"description": "A Vue.js web extension",
"author": "Streaver",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch"
},
"dependencies": {
"vue": "^2.6.10",
"webextension-polyfill": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@babel/runtime-corejs3": "^7.6.3",
"archiver": "^3.1.1",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^4.5.3",
"core-js": "^3.2.1",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"ejs": "^2.7.1",
"file-loader": "^1.1.11",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.9.3",
"sass-loader": "^7.3.1",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.10",
"web-ext-types": "^3.2.1",
"webpack": "^4.20.2",
"webpack-chrome-extension-reloader": "^1.3.0",
"webpack-cli": "^3.3.10"
}
}