-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.97 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.97 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
{
"name": "tunecamp",
"version": "2.0.0",
"description": "A decentralized music platform for artists and labels, with streaming, federation, and Subsonic API support",
"main": "dist/server/server.js",
"type": "module",
"bin": {
"tunecamp": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch & npm run watch:css",
"start": "node dist/tools/migrate-dedupe.js && node dist/tools/migrate-visibility.js && node dist/cli.js server",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"tunecamp": "node dist/cli.js",
"migrate:dedupe": "node dist/tools/migrate-dedupe.js",
"migrate:visibility": "node dist/tools/migrate-visibility.js",
"build:css": "tailwindcss -i webapp/css/input.css -o webapp/css/style.css",
"watch:css": "tailwindcss -i webapp/css/input.css -o webapp/css/style.css --watch"
},
"keywords": [
"music",
"streaming",
"subsonic",
"activitypub",
"federation",
"gundb",
"audio"
],
"author": "",
"license": "MIT",
"dependencies": {
"@fedify/express": "^1.10.3",
"@fedify/fedify": "^1.10.3",
"@inquirer/prompts": "^8.2.0",
"@js-temporal/polyfill": "^0.5.1",
"@types/adm-zip": "^0.5.7",
"@types/archiver": "^7.0.0",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/inquirer": "^9.0.9",
"@types/multer": "^2.0.0",
"adm-zip": "^0.5.16",
"archiver": "^7.0.1",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.6.2",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"commander": "^11.1.0",
"cors": "^2.8.5",
"d3-array": "^3.2.4",
"d3-scale": "^4.0.2",
"d3-shape": "^3.2.0",
"ethers": "^6.16.0",
"express": "^4.21.2",
"ffmpeg-static": "^5.3.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"gun": "git+https://github.com/scobru/gun",
"inquirer": "^13.2.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.2",
"music-metadata": "^8.1.4",
"node-fetch": "^3.3.2",
"node-id3": "^0.2.9",
"play-dl": "^1.9.7",
"shogun-contracts-sdk": "^1.3.7",
"ts-pattern": "^5.9.0",
"vercel": "^50.4.4",
"waveform-data": "^4.5.2",
"xmlbuilder2": "^4.0.3",
"yaml": "^2.3.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tailwindcss/cli": "^4.1.18",
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/d3-array": "^3.2.2",
"@types/d3-scale": "^4.0.9",
"@types/d3-shape": "^3.1.8",
"@types/express": "^4.17.25",
"@types/ffprobe-static": "^2.0.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.37",
"@types/node-fetch": "^2.6.13",
"@types/supertest": "^6.0.3",
"daisyui": "^5.5.16",
"jest": "^29.7.0",
"jest-util": "^29.7.0",
"supertest": "^7.2.2",
"tailwindcss": "^4.1.18",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}