-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 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
{
"name": "stroycord",
"version": "1.5.3",
"engines": {
"node": ">=24"
},
"description": "A discord bot to play music in VC",
"main": "src/Bot.ts",
"scripts": {
"dev": "tsx watch ./src/Bot.ts",
"start": "node ./dist/Bot.js",
"build": "npm run lint && tsup ./src/Bot.ts --minify",
"lint": "biome check --write .",
"lint:ci": "biome ci .",
"test": "vitest run",
"test:functional": "vitest run src/tests/functional",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"knip": "knip",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:rebuild": "docker compose up -d --build",
"docker:logs": "docker compose logs -f stroycord",
"docker:test-env": "docker compose up -d mongodb mongo-express",
"docker:test-env-down": "docker compose stop mongodb mongo-express",
"docker:clean": "docker compose down -v"
},
"author": "Dest.Com",
"license": "GPL-3.0",
"dependencies": {
"@discordjs/opus": "0.10.0",
"@discordjs/voice": "0.19.2",
"discord.js": "14.26.3",
"dotenv": "17.4.2",
"i18n-js": "4.5.3",
"libsodium-wrappers": "0.8.3",
"mongodb": "7.1.1",
"mongoose": "9.4.1",
"youtube-dl-exec": "^3.1.5",
"youtubei.js": "^17.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@changesets/cli": "^2.30.0",
"@types/node": "25.6.0",
"@vitest/coverage-v8": "4.1.4",
"knip": "6.4.1",
"lefthook": "2.1.6",
"mongodb-memory-server": "11.0.1",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "6.0.2",
"vitest": "4.1.4"
}
}