-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 945 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "tunified",
"version": "3.3.1",
"description": "lastfm now playing bot for telegram",
"main": "bot.mjs",
"scripts": {
"start": "npm install concurrently && pip install -r api/ytmusic/requirements.txt && npm install && npm run tunified",
"tunified": "concurrently \"npm:api\" \"npm:bot\"",
"api": "python3 api/ytmusic/api.py",
"bot": "node bot.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Burhanverse/Tunified.git"
},
"author": "Burhanverse",
"license": "MIT",
"bugs": {
"url": "https://github.com/Burhanverse/Tunified/issues"
},
"homepage": "https://github.com/Burhanverse/Tunified#readme",
"dependencies": {
"axios": "^1.7.8",
"dotenv": "^16.4.5",
"formidable": "^3.5.1",
"grammy": "^1.34.1",
"mongodb": "^6.11.0",
"node-fetch": "^3.3.2",
"superagent": "^10.0.0"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}