-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.35 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
77
78
79
80
81
82
83
84
{
"name": "youtube-assist",
"author": {
"name": "Marius Urbelis",
"email": "[email protected]",
"url": "https://mariusurbelis.com"
},
"licence": "GPLv3",
"version": "0.1.0",
"description": "An application assisting YouTube content creators produce more consistent content",
"keywords": [
"youtube",
"video creators",
"productivity"
],
"repository": "github:mariusurbelis/youtube-assist",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:windows": "vue-cli-service electron:build --win nsis",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/vue-fontawesome": "^2.0.7",
"bootstrap": "^4.6.1",
"bootstrap-vue": "^2.23.1",
"core-js": "^3.22.4",
"date-streaks": "^1.2.1",
"dayjs": "^1.11.6",
"ffmpeg-progress-wrapper": "^2.0.1",
"google-auth-library": "^7.14.1",
"googleapis": "^67.1.1",
"jquery": "^3.6.0",
"nedb": "^1.8.0",
"user-home": "^2.0.0",
"vue": "^2.7.13",
"vue-loading-overlay": "^3.4.2",
"vue-router": "^3.6.5",
"vue-toast-notification": "^0.6.2",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^5.0.8",
"babel-eslint": "^10.1.0",
"electron": "^18.3.7",
"electron-devtools-installer": "^3.1.0",
"eslint": "^8.0.1",
"eslint-plugin-vue": "^7.20.0",
"vue-cli-plugin-electron-builder": "^1.4.6",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-unused-vars": "off",
"no-unreachable": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}