27 lines
700 B
JSON
27 lines
700 B
JSON
{
|
|
"scripts": {
|
|
"build": "bun build --minify --target bun --outdir dist --sourcemap src/main.ts",
|
|
"check:code": "eslint src/ --ext .ts",
|
|
"check:spell": "cspell --config cspell.code.json **/*.ts",
|
|
"start": "bun run src/main.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "8.57.1",
|
|
"@typescript-eslint/parser": "8.57.1",
|
|
"cspell": "8.19.4",
|
|
"eslint": "8.57.1",
|
|
"typescript": "5.9.3",
|
|
"@types/bun": "latest"
|
|
},
|
|
"dependencies": {
|
|
"env-var": "7.5.0",
|
|
"gotify": "1.1.0",
|
|
"pino": "10.3.1",
|
|
"pino-pretty": "13.1.3",
|
|
"ts3-nodejs-library": "3.5.1"
|
|
},
|
|
"name": "ts3gotify",
|
|
"module": "src/main.ts",
|
|
"type": "module"
|
|
}
|