-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.89 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
{
"name": "hatiina",
"version": "1.0.0",
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "vue,js,json"
}
},
"scripts": {
"mkdir:img": "mkdirp dist/img",
"mkdir:icons": "mkdirp dist/icons",
"mkdirs": "run-p mkdir:img mkdir:icons",
"compile:content": "vue-cli-service build --no-clean src/app.js",
"compile:background": "vue-cli-service build --target lib --formats umd --dest dist/js --no-clean --name background src/js/background.js",
"compile": "run-s compile:content compile:background",
"copy:manifest": "cpx src/manifest.json dist/",
"copy:icons": "cpx 'src/icons/*' dist/icons/",
"copy:img": "cpx 'src/img/*' dist/img/",
"copy": "run-p copy:manifest copy:icons copy:img",
"remove:index": "rimraf dist/index.html",
"remove:demo": "rimraf dist/js/demo.html",
"remove": "run-p remove:index remove:demo",
"build": "run-s compile mkdirs copy remove",
"zip": "run(){ zip -r -X releases/$1.zip dist; }; run",
"release": "npm run build && npm run zip $1",
"watch": "npm-watch"
},
"author": "r17n",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-regular-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/vue-fontawesome": "^0.1.7",
"axios": "^0.21.1",
"crx-hotreload": "^1.0.4",
"moment-timezone": "^0.5.26",
"vue": "^2.6.10",
"webextension-polyfill": "^0.5.0"
},
"devDependencies": {
"@vue/cli-service": "^3.11.0",
"cpx": "^1.5.0",
"mkdirp2": "^1.0.4",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"terser-webpack-plugin": "^2.1.3",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.10"
}
}