This repository was archived by the owner on Apr 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "gorou",
"version": "2.14.3",
"description": "Open-source Discord music bot with Lavalink featured with an awesome new thing on Discord.",
"repository": "https://github.com/KurokuTetsuya/gorou",
"license": "AGPL-3.0",
"author": "Zen Shibata",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"start": "node dist/index.js",
"start:dev": "ts-node -r dotenv/config src/bot.ts"
},
"main": "dist/index.js",
"dependencies": {
"better-erela.js-spotify": "^1.2.4",
"common-tags": "^1.8.2",
"date-fns": "^2.28.0",
"discord.js": "^13.3.1",
"erela.js": "^2.3.3",
"erela.js-filter": "^0.2.3",
"got": "^12.0.3",
"mongodb": "^3.7.3",
"reflect-metadata": "^0.1.13",
"tslib": "^2.3.1",
"typeorm": "^0.2.41",
"winston": "^3.3.3"
},
"eslintConfig": {
"extends": "@hazmi35/eslint-config/typescript",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"devDependencies": {
"@hazmi35/eslint-config": "^7.0.1",
"@types/common-tags": "^1.8.1",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"dotenv": "^14.3.2",
"eslint": "^8.7.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"libsodium-wrappers": "^0.7.9",
"utf-8-validate": "^5.0.8",
"zlib-sync": "^0.1.7"
},
"engines": {
"node": ">=16.6.0"
}
}