eximiabots-radiox/package.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2020-03-02 19:38:42 +00:00
{
"name": "eximiabots-radiox",
2021-09-09 23:33:56 +00:00
"version": "0.3.9",
2020-08-16 23:50:07 +00:00
"description": "Internet Radio to your Discord guild",
2020-03-02 19:38:42 +00:00
"main": "index.js",
"scripts": {
2021-06-08 09:02:22 +00:00
"build": "rimraf ./build && tsc",
2021-09-09 22:21:14 +00:00
"start": "node --no-warnings build/index.js",
"start:dev": "npm run build && node --no-warnings build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warengroup/eximiabots-radiox.git"
},
2020-08-22 10:31:28 +00:00
"author": "EximiaBots by Warén Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/warengroup/eximiabots-radiox/issues"
2020-03-02 19:38:42 +00:00
},
"dependencies": {
2021-08-25 19:21:15 +00:00
"@discordjs/builders": "^0.6.0",
2021-08-21 12:58:07 +00:00
"@discordjs/opus": "^0.6.0",
2021-08-25 19:21:15 +00:00
"@discordjs/rest": "^0.1.1-canary.0",
"@discordjs/voice": "^0.6.0",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
2021-08-07 20:56:23 +00:00
"dotenv": "^10.0.0",
2021-08-04 09:26:52 +00:00
"libsodium-wrappers": "^0.7.9",
2021-09-01 09:41:46 +00:00
"node-fetch": "^3.0.0",
"path": "^0.12.7"
2021-06-08 09:02:22 +00:00
},
"devDependencies": {
2021-09-12 13:48:11 +00:00
"@types/node": "^16.9.1",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
2021-08-07 20:56:23 +00:00
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
2021-08-31 07:37:12 +00:00
"eslint-plugin-prettier": "^4.0.0",
2021-08-04 07:07:29 +00:00
"nodemon": "^2.0.12",
2021-09-12 13:48:11 +00:00
"prettier": "^2.4.0",
2021-06-08 09:02:22 +00:00
"rimraf": "^3.0.2",
2021-08-21 12:58:07 +00:00
"ts-node": "^10.2.1",
"tsc-watch": "^4.5.0",
2021-08-26 23:52:19 +00:00
"typescript": "^4.4.2"
2021-08-07 20:56:23 +00:00
},
"engines": {
2021-09-12 13:48:11 +00:00
"node": ">=16.9.0",
2021-08-07 20:56:23 +00:00
"npm": ">=7.0.0"
2020-03-02 19:38:42 +00:00
}
2021-09-09 09:44:50 +00:00
}