mirror of
https://github.com/YuzuZensai/Discord-Mobile-Playing-CLI.git
synced 2026-09-13 15:09:04 +00:00
26 lines
613 B
JSON
26 lines
613 B
JSON
{
|
|
"name": "discord-mobile-playing-cli",
|
|
"version": "1.0.0",
|
|
"main": "src/index.ts",
|
|
"type": "module",
|
|
"author": "Yuzu <yuzu@kirameki.cafe>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"serverline": "^1.6.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"lint": "biome lint .",
|
|
"lint:fix": "biome lint --write .",
|
|
"format": "biome format .",
|
|
"format:fix": "biome format --write .",
|
|
"typecheck": "tsc --noEmit",
|
|
"check": "bun run typecheck && bun run lint && bun run format"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.5.4",
|
|
"@types/bun": "^1.3.14",
|
|
"typescript": "^7.0.2"
|
|
}
|
|
}
|