forked from staniel359/muffon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
{
"name": "muffon",
"version": "1.6.0",
"description": "Music streaming browser",
"homepage": "https://github.com/staniel359/muffon",
"license": "MIT",
"author": {
"name": "Aleksey Shpakovsky",
"email": "[email protected]",
"url": "https://github.com/staniel359"
},
"main": "build_electron/main.js",
"scripts": {
"start": "vite",
"start:electron": "NODE_ENV=development DEV_TOOLS=false electron .",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"build": "vite build",
"build:electron": "electron-builder --dir",
"build:all": "yarn build && yarn build:electron",
"package:electron": "electron-builder",
"package:all": "yarn build && yarn package:electron",
"release:electron": "electron-builder --publish always",
"release": "yarn build && yarn release:electron",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"axios": "^1.5.1",
"change-case": "^5.0.2",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.10",
"deepmerge": "^4.3.1",
"discord-rpc": "^4.0.1",
"electron-dl": "^3.5.1",
"electron-store": "^8.1.0",
"emoji-mart": "^5.5.2",
"fomantic-ui": "^2.9.3",
"hotkeys-js": "^3.12.0",
"i18n": "^0.15.1",
"i18n-iso-countries": "^7.7.0",
"jquery": "^3.7.1",
"music-metadata-browser": "^2.5.10",
"pinia": "^2.1.7",
"slick-carousel": "^1.8.1",
"uuid": "^9.0.1",
"vue": "^3.3.4",
"vue-i18n": "^9.5.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@rollup/plugin-inject": "^5.0.5",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-standard": "^8.0.1",
"electron": "^27.0.0",
"electron-builder": "^24.6.4",
"eslint": "^8.51.0",
"eslint-plugin-vue": "^9.17.0",
"sass": "^1.69.3",
"vite": "^4.4.11",
"vite-electron-plugin": "^0.8.2",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-eslint": "^1.8.1"
}
}