Files
ts3gotify/package.json
Renovate Bot bade4f6266
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
CI / Test (pull_request) Failing after 8s
chore(deps): update dependency eslint to v9
2025-10-04 15:07:05 +00:00

28 lines
750 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": {
"@types/ts3-nodejs-library": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"cspell": "^8.0.0",
"eslint": "^9.0.0",
"typescript": "^5.0.0",
"@types/bun": "latest"
},
"dependencies": {
"env-var": "^7.5.0",
"gotify": "^1.1.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"ts3-nodejs-library": "^3.4.1"
},
"name": "ts3gotify",
"module": "src/main.ts",
"type": "module"
}