-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "lavatools",
"version": "1.0.60",
"type": "module",
"description": "A collection of tools for LavaLink",
"main": "src/index.ts",
"author": "Kiyomi Fujiwara <kiyomi@mja.moe>",
"license": "MIT",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"test": "bun test",
"typecheck:app": "tsc -p tsconfig.app.json --noEmit",
"format": "biome check --write ./src && biome format --write ./src",
"sub:update": "git submodule update --init --remote --recursive"
},
"lint-staged": {
"*.ts": [
"bun format"
]
},
"dependencies": {
"@elysiajs/openapi": "^1.4.11",
"astring": "^1.9.0",
"axios": "^1.12.2",
"elysia": "^1.4.9",
"lru-cache": "^11.2.2",
"meriyah": "^6.1.4",
"playwright": "^1.55.1",
"totp-generator": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.3"
},
"peerDependencies": {
"typescript": "^5"
}
}