-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.8 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
85
86
87
{
"name": "@ventic/desktop",
"version": "1.0.0-alpha",
"private": true,
"description": "Ventic desktop application powered by Electron and Vue",
"scripts": {
"start:dev": "node scripts/watch.js",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"packages:all:lint": "eslint . --ext js,ts,vue --no-fix",
"packages:main:lint": "eslint packages/main --ext js,ts --no-fix",
"packages:preload:lint": "eslint packages/preload --ext js,ts --no-fix",
"packages:renderer:lint": "eslint packages/renderer --ext js,ts,vue --no-fix",
"i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\""
},
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"main": "packages/main/dist/index.cjs",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@mdi/js": "^6.9.96",
"@mdi/svg": "^6.9.96",
"@panter/vue-i18next": "^0.15.2",
"axios": "^0.26.0",
"bufferutil": "^4.0.6",
"discord-rpc": "^4.0.1",
"electron-store": "^8.0.2",
"i18next": "^21.6.13",
"roboto-fontface": "*",
"utf-8-validate": "^5.0.8",
"velocity-animate": "^2.0.6",
"vue": "^2.6.14",
"vue-infinite-loading": "^2.4.5",
"vue-lazytube": "^1.0.2",
"vue-recaptcha": "^1.3.0",
"vue-router": "^3.5.3",
"vue-virtual-scroller": "^1.0.10",
"vuetify": "^2.6.6",
"vuex": "^3.6.2",
"webtorrent": "^1.8.26",
"wrtc": "^0.4.7"
},
"devDependencies": {
"@mdi/font": "^5.9.55",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-service": "^4.5.4",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"electron": "^17.1.0",
"electron-devtools-installer": "^3.2.0",
"electron-updater": "^4.6.5",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^8.4.1",
"prettier": "^2.5.1",
"sass": "~1.32.12",
"sass-loader": "^10.0.1",
"typescript": "~4.5.5",
"unplugin-vue-components": "^0.17.21",
"video.js": "^7.20.1",
"vite": "^2.8.6",
"vite-plugin-vue2": "^1.9.3",
"vue-debounce": "^3.1.0",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3"
},
"bugs": {
"url": "https://github.com/ventic/desktop/issues"
},
"homepage": "https://github.com/ventic/desktop#readme",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/ventic/desktop.git"
}
}