kowalski/package.json

30 lines
703 B
JSON
Raw Normal View History

2024-05-24 17:49:24 -03:00
{
"name": "lynx",
"version": "1.0.0",
"description": "A simple Telegram bot made in Node.js",
2024-05-24 18:39:12 -03:00
"main": "src/main.js",
2024-05-24 17:49:24 -03:00
"scripts": {
2024-06-04 18:27:45 +00:00
"beta": "nodemon --env-file=beta.env main.js",
"start": "nodemon --env-file=config.env main.js"
2024-05-24 17:49:24 -03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucmsilva651/lynx.git"
},
"keywords": [
"node",
"telegram",
"telegram-bot"
],
"author": "Lucas Gabriel (lucmsilva)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucmsilva651/lynx/issues"
},
"homepage": "https://github.com/lucmsilva651/lynx#readme",
"dependencies": {
2024-06-04 18:27:45 +00:00
"node-telegram-bot-api": "^0.66.0",
"nodemon": "^3.1.4"
2024-05-24 17:49:24 -03:00
}
}