generated from lavaclient/discordjs-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.5 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@lavaclient/discord.js",
"version": "0.0.0",
"description": "Discord.js example bot",
"main": "dist/index.js",
"repository": "https://github.com/lavaclient/discord-v13-example",
"author": "melike2d",
"license": "GPL-3.0-only",
"private": false,
"_moduleAliases": {
"@lib": "dist/lib"
},
"scripts": {
"build": "yarn clean && tsc",
"clean": "rimraf dist",
"dev": "yarn build && node .",
"start": "yarn dev --force-sync",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"prettier": "prettier .",
"format": "prettier-eslint --eslint-config-path src/../.eslintrc.js --config src/../.prettierrc \"src/**/*.ts\"",
"check-tsc": "tsc --noEmit"
},
"dependencies": {
"@lavaclient/queue": "^2.0.4",
"@lavaclient/spotify": "^3.1.0",
"discord.js": "^14.3.0",
"dotenv": "^10.0.0",
"lavaclient": "^4.0.4",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^3.0.2",
"type-fest": "^2.3.2",
"typescript": "*"
},
"engines": {
"node": ">=16.6.x"
}
}