Files
book_bot/package.json
2021-12-26 17:30:08 +03:00

31 lines
751 B
JSON

{
"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"
}
}