-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 3.88 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 3.88 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "flake-wire",
"version": "1.0.2",
"description": "A media streaming application with debrid provider integration",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client:dev\"",
"server": "nodemon server/index.js",
"client:dev": "cd client && npm run dev",
"client:build": "cd client && npm run build",
"build": "npm run client:build",
"build:all": "npm run client:build && npm run electron:build",
"install-all": "npm install && cd client && npm install && cd ../server && npm install && cd ..",
"electron:dev": "ELECTRON_TRANSCODE=true PORT=3001 electron ./electron/main.js",
"electron:pack": "electron-builder -mwl",
"electron:build": "npm run client:build && npm run electron:pack",
"electron:build:script": "node build-electron.js",
"electron:build:shell": "./build-electron.sh",
"electron:build:linux": "npm run client:build && npx electron-builder --linux --publish=never",
"electron:build:mac": "npm run client:build && npx electron-builder --mac --publish=never",
"electron:build:win": "npm run client:build && npx electron-builder --win --publish=never",
"electron:build:all": "npm run client:build && npx electron-builder --mac --win --linux --publish=never",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"docker:dev": "docker compose -f docker-compose.dev.yml up --build",
"docker:prod": "docker compose -f docker-compose.prod.yml up -d --build",
"docker:clean": "docker compose down -v --remove-orphans && docker system prune -f"
},
"keywords": [
"media",
"streaming",
"debrid",
"movies",
"tv-shows"
],
"author": {
"name": "Flake Wire Team",
"email": "support@flakewire.app"
},
"homepage": "https://github.com/flake-wire/flake-wire",
"license": "MIT",
"build": {
"appId": "com.flakewire.app",
"productName": "Flake Wire",
"directories": {
"output": "dist"
},
"asarUnpack": [
"node_modules/ffmpeg-static/**"
],
"files": [
"server/**",
"client/dist/**",
"client/build/**",
"electron/**",
"assets/**",
"logo.png",
".env",
"package.json",
"node_modules/**"
],
"extraMetadata": {
"main": "electron/main.js"
},
"mac": {
"category": "public.app-category.video",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "logo.png"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "logo.png"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"category": "AudioVideo",
"maintainer": "Flake Wire Team <support@flakewire.app>",
"icon": "logo.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"dependencies": {
"@vitejs/plugin-react-swc": "^4.2.2",
"axios": "^1.6.0",
"bcrypt": "^6.0.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"jsonwebtoken": "^9.0.2",
"playwright": "^1.56.1",
"socket.io": "^4.7.2",
"vite": "^7.2.4"
},
"devDependencies": {
"7zip-bin": "^5.2.0",
"concurrently": "^8.2.2",
"electron": "^29.0.0",
"electron-builder": "^24.6.4",
"nodemon": "^3.0.1"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
}
}