This commit is contained in:
2021-12-13 02:06:36 +03:00
commit 7725f47f2a
22 changed files with 893 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "flibusta_bot",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "esbuild ./src/main.ts --bundle --platform=node --outfile=./build/main.cjs",
"build-watch": "npm run build -- --watch",
"run": "node ./build/main.cjs",
"run-watch": "nodemon build/main.cjs"
},
"author": "",
"license": "ISC",
"dependencies": {
"envalid": "^7.2.2",
"express": "^4.17.1",
"got": "^11.8.3",
"safe-compare": "^1.1.4",
"telegraf": "^4.4.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.9",
"@types/safe-compare": "^1.1.0",
"esbuild": "^0.14.2",
"nodemon": "^2.0.15",
"typescript": "^4.5.2"
}
}