-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 996 Bytes
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
{
"name": "ritmosbot",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"license": "GPL-3.0-only",
"author": "devparada",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit && tsup --config tsup.config.js",
"format": "biome format src tests",
"formatw": "biome format src tests --write",
"lint": "biome check src tests",
"lintw": "biome check src tests --write",
"test": "vitest run --reporter=verbose",
"testw": "vitest"
},
"imports": {
"#/*": "./dist/*",
"#tests/*": "./tests/*"
},
"dependencies": {
"discord.js": "14.27.0",
"kazagumo": "3.4.3",
"kazagumo-spotify": "2.1.1",
"mongodb": "7.5.0",
"shoukaku": "4.3.0",
"spotify-url-info": "3.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"tsup": "8.5.1",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"packageManager": "pnpm@11.18.0",
"engines": {
"node": ">=22"
}
}