26 lines
571 B
JSON
26 lines
571 B
JSON
{
|
|
"name": "bot",
|
|
"private": true,
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"ts-prepare": "ts-patch install -s",
|
|
"start:dev": "bun run ts-prepare && bun ./src/main.ts",
|
|
"start:prod": "bun ./dist/main.js",
|
|
"build": "tsc && tsc-alias"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"ts-patch": "^3.3.0",
|
|
"tsc-alias": "^1.8.16",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript-transform-paths": "^3.5.5"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.5.0",
|
|
"telegraf": "^4.16.3"
|
|
}
|
|
}
|