-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "sc-gate-dl",
"module": "src/index.ts",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/D3SOX/sc-gate-dl"
},
"author": {
"name": "D3SOX",
"url": "https://github.com/D3SOX"
},
"license": "GPL-3.0-or-later",
"scripts": {
"start": "bun run .",
"manage-acc": "bun run ./manage-acc.ts",
"start:server": "bun run ./src/server.ts",
"dev:server": "bun --watch ./src/server.ts",
"dev:webui": "cd webui && bun run dev",
"webui": "bun run --parallel dev:server dev:webui",
"lint": "biome check ./src",
"lint:fix": "biome check --fix ./src"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@types/bun": "^1.3.14",
"@types/cli-progress": "^3.11.6",
"typescript": "^7.0.2"
},
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"cli-progress": "^3.12.0",
"cloakbrowser": "^0.5.3",
"find-bin": "^1.1.1",
"mmdb-lib": "^3.0.3",
"puppeteer": "^25.4.0",
"soundcloud.ts": "^0.7.4"
},
"patchedDependencies": {
"soundcloud.ts@0.7.4": "patches/soundcloud.ts@0.7.4.patch"
}
}