muse/package.json

97 lines
2.6 KiB
JSON
Raw Normal View History

2020-03-09 17:57:39 +01:00
{
"name": "muse",
"version": "0.1.0",
"description": "🎧 a self-hosted Discord music bot that doesn't suck ",
"main": "dist/index.js",
"repository": "git@github.com:codetheweb/muse.git",
"author": "Max Isom <hi@maxisom.me>",
"license": "MIT",
"private": true,
"types": "dts/types",
"files": [
"dist",
"dts"
],
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint 'src/**/*.ts' --fix",
"clean": "rm -rf dist dts",
2020-10-24 18:32:43 +02:00
"test": "yarn lint",
2020-03-09 17:57:39 +01:00
"build": "tsc",
"watch": "tsc --watch",
2020-10-24 18:32:43 +02:00
"prepack": "yarn clean && yarn build",
2020-03-09 17:57:39 +01:00
"start": "node dist/index.js",
2020-03-17 23:59:26 +01:00
"dev": "nodemon",
"docker-publish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t codetheweb/muse:latest --push ."
2020-03-09 17:57:39 +01:00
},
"devDependencies": {
2020-05-31 04:37:40 +02:00
"@types/bluebird": "^3.5.32",
2020-03-17 23:59:26 +01:00
"@types/debug": "^4.1.5",
2020-10-24 18:32:43 +02:00
"@types/fluent-ffmpeg": "^2.1.16",
2020-03-14 02:36:42 +01:00
"@types/fs-capacitor": "^2.0.0",
2020-10-24 18:32:43 +02:00
"@types/node": "^14.14.2",
2020-03-25 23:59:09 +01:00
"@types/node-emoji": "^1.8.1",
2020-03-13 04:41:26 +01:00
"@types/spotify-web-api-node": "^4.0.1",
2020-08-24 21:53:18 +02:00
"@types/validator": "^13.1.0",
2020-10-24 18:32:43 +02:00
"@types/ws": "^7.2.7",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-xo": "^0.33.1",
"eslint-config-xo-typescript": "^0.35.0",
"husky": "^4.3.0",
"nodemon": "^2.0.6",
2020-03-09 17:57:39 +01:00
"reflect-metadata": "^0.1.13",
2020-08-24 21:53:18 +02:00
"ts-node": "^9.0.0",
2020-10-24 18:32:43 +02:00
"typescript": "^4.0.3"
2020-03-09 17:57:39 +01:00
},
"eslintConfig": {
"extends": [
"xo",
"xo-typescript/space"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"new-cap": "off",
"@typescript-eslint/no-unused-vars": "off",
2020-03-25 23:59:09 +01:00
"@typescript-eslint/no-unused-vars-experimental": "error",
"@typescript-eslint/prefer-readonly-parameter-types": "off"
2020-03-09 17:57:39 +01:00
}
},
"husky": {
"hooks": {
2020-10-24 18:32:43 +02:00
"pre-commit": "npm test && yarn build"
2020-03-09 17:57:39 +01:00
}
},
"dependencies": {
2020-05-31 04:37:40 +02:00
"@discordjs/opus": "^0.3.2",
2020-03-14 18:41:00 +01:00
"array-shuffle": "^1.0.1",
2020-10-24 18:32:43 +02:00
"debug": "^4.2.0",
2020-08-24 21:53:18 +02:00
"delay": "^4.4.0",
2020-10-24 18:32:43 +02:00
"discord.js": "^12.4.1",
2020-03-09 17:57:39 +01:00
"dotenv": "^8.2.0",
2020-03-15 03:48:08 +01:00
"fluent-ffmpeg": "^2.1.2",
2020-05-31 04:37:40 +02:00
"fs-capacitor": "^6.2.0",
2020-03-21 02:47:04 +01:00
"get-youtube-id": "^1.0.1",
2020-10-24 18:32:43 +02:00
"got": "^11.8.0",
"hasha": "^5.2.2",
2020-03-13 04:41:26 +01:00
"inversify": "^5.0.1",
"iso8601-duration": "^1.2.0",
2020-05-31 04:37:40 +02:00
"make-dir": "^3.1.0",
2020-03-09 17:57:39 +01:00
"node-emoji": "^1.10.0",
"p-event": "^4.2.0",
2020-08-24 21:53:18 +02:00
"p-limit": "^3.0.2",
2020-05-31 04:37:40 +02:00
"sequelize": "^5.21.11",
2020-03-09 17:57:39 +01:00
"sequelize-typescript": "^1.1.0",
2020-08-24 21:53:18 +02:00
"spotify-uri": "^2.1.0",
2020-10-24 18:32:43 +02:00
"spotify-web-api-node": "^5.0.0",
2020-08-24 21:53:18 +02:00
"sqlite3": "^5.0.0",
2020-03-19 01:17:47 +01:00
"unique-random-array": "^2.0.0",
2020-09-24 17:14:38 +02:00
"youtube.ts": "^0.1.8",
2020-10-24 19:10:02 +02:00
"ytdl-core": "^3.4.2"
2020-03-09 17:57:39 +01:00
}
}