26 lines
687 B
JSON
26 lines
687 B
JSON
{
|
|
"scripts": {
|
|
"build": "bun build --minify --target bun --outdir dist --sourcemap src/app.ts",
|
|
"check:code": "eslint src/ --ext .ts",
|
|
"check:spell": "cspell --config cspell.code.json **/*.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ts3-nodejs-library": "^2.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.46.0",
|
|
"@typescript-eslint/parser": "^5.46.0",
|
|
"cspell": "^6.17.0",
|
|
"eslint": "^8.29.0",
|
|
"typescript": "^4.9.3",
|
|
"@types/bun": "latest"
|
|
},
|
|
"dependencies": {
|
|
"env-var": "^7.5.0",
|
|
"gotify": "^1.1.0",
|
|
"ts3-nodejs-library": "^3.4.1",
|
|
"winston": "^3.8.2"
|
|
},
|
|
"name": "ts3gotify",
|
|
"module": "src/app.ts",
|
|
"type": "module"
|
|
}
|