Files
Kiroku/package.json
T

37 lines
1018 B
JSON
Raw Permalink Normal View History

2023-09-20 10:56:45 +07:00
{
"name": "kiroku",
"module": "src/index.ts",
"type": "module",
"scripts": {
"tsc": "tsc",
"start": "bun --watch run ./src/index.ts",
"dev": "tsc && bun start",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"typecheck": "tsc --noEmit",
"check": "biome check . && tsc --noEmit",
"check:fix": "biome check --write . && tsc --noEmit",
"test": "bun test",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@sinclair/typebox": "^0.34.52",
"@types/bun": "^1.3.14",
"bun-types": "^1.3.14",
"husky": "^9.1.7",
"typescript": "^7.0.2"
},
"peerDependencies": {
"typescript": "^7.0.0"
},
"dependencies": {
"discord.js": "^14.27.0",
"dotenv": "^17.4.2",
"elysia": "^1.4.29",
"steamapi": "^3.1.5"
}
}