-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
{
"name": "chorus",
"version": "0.0.0",
"private": true,
"author": "Mark Oleson <fusion2004@gmail.com>",
"description": "Your Party Rock Commander",
"main": "dist/index.js",
"type": "module",
"dependencies": {
"@aws-sdk/client-polly": "^3.1051.0",
"@eyevinn/srt": "^0.8.3",
"@fusion2004/nodeshout-koffi": "^3.1.0",
"@mux/mux-node": "^14.1.0",
"@sapphire/framework": "^5.5.0",
"bottleneck": "^2.19.5",
"bufferutil": "^4.1.0",
"cheerio": "^1.2.0",
"discord.js": "14.26.4",
"ffmpeg-static": "^5.3.0",
"got": "^15.0.5",
"lodash-es": "^4.18.1",
"music-metadata": "^11.12.3",
"pino": "^10.3.1",
"prism-media": "^1.3.5",
"ulid": "^3.0.2",
"utf-8-validate": "^6.0.6",
"xmlbuilder": "^15.1.1",
"xstate": "^5.31.1",
"zlib-sync": "^0.1.10"
},
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "tsx watch src/index.ts | pino-pretty",
"build": "tsc",
"start": "node dist/index.js",
"lint:oxlint": "oxlint src/ test/",
"lint:oxlint:fix": "oxlint src/ test/ --fix",
"lint:oxfmt": "oxfmt --check src/ test/",
"lint:oxfmt:fix": "oxfmt src/ test/",
"lint:typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"spike:srt": "tsx src/srt-spike.ts"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.12.4",
"@vitest/coverage-v8": "^4.1.7",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"pino-pretty": "^13.1.3",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"packageManager": "yarn@4.15.0"
}