-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.2 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
88
{
"name": "M3U8-Hunter",
"type": "module",
"version": "0.0.7-alpha",
"private": true,
"description": "Get m3u8 file from web.",
"author": "Nick22nd",
"license": "Apache-2.0",
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"main": "dist-electron/main/index.js",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder",
"preview": "vite preview",
"test": "vitest",
"test-ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.0",
"@chenfengyuan/vue-qrcode": "^2.0.0",
"@ffmpeg/ffmpeg": "^0.12.10",
"@ffmpeg/util": "^0.12.1",
"@rushstack/eslint-patch": "^1.8.0",
"@types/dplayer": "^1.25.5",
"@vitejs/plugin-vue": "^5.0.1",
"@vitest/ui": "^1.4.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vueuse/core": "^10.9.0",
"async": "^3.2.5",
"cors": "^2.8.5",
"download": "^8.0.0",
"dplayer": "^1.27.1",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"electron-log": "^5.1.1",
"electron-store": "^8.2.0",
"element-plus": "^2.5.1",
"eslint": "^8.57.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-vue": "^9.25.0",
"express": "^4.18.3",
"fluent-ffmpeg": "^2.1.2",
"got": "^14.0.0",
"hls.js": "^1.5.8",
"lint-staged": "^15.2.2",
"lowdb": "^7.0.1",
"lucide-vue-next": "^0.309.0",
"m3u8-parser": "^7.1.0",
"pinia": "^2.1.7",
"portfinder": "^1.0.32",
"prettier": "^3.2.5",
"qrcode": "1",
"simple-git-hooks": "^2.11.1",
"tree-kill": "^1.2.2",
"typescript": "^5.3.3",
"unocss": "^0.58.3",
"unplugin-auto-import": "^0.17.5",
"vite": "^5.0.10",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^1.4.0",
"vue": "^3.4.1",
"vue-router": "4",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}