-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "sneaky-bot",
"version": "1.0.0",
"description": "A discord music bot.",
"main": "dist/index.js",
"engines": {
"node": ">=16.9"
},
"engineStrict": true,
"scripts": {
"postinstall": "husky install",
"deploy": "node deploy-commands.js",
"deploydev": "node -r dotenv/config deploy-commands.js",
"dev": "nodemon --config nodemon.json src/index.ts ",
"lint": " tslint -c tslint.json -p tsconfig.json --fix",
"prebuild": "npm run lint",
"build": "tsc",
"prestart": "npm run deploy",
"start": "node -r tsconfig-paths/register -r ts-node/register .",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bangjdev/sneaky-bot.git"
},
"keywords": [
"music",
"discord",
"bot"
],
"author": "Bang NGUYEN",
"license": "ISC",
"bugs": {
"url": "https://github.com/bangjdev/sneaky-bot/issues"
},
"homepage": "https://github.com/bangjdev/sneaky-bot#readme",
"dependencies": {
"@discordjs/voice": "^0.6.0",
"discord.js": "^13.1.0",
"ffmpeg": "^0.0.4",
"ffmpeg-static": "^4.4.0",
"fluent-ffmpeg": "^2.1.2",
"libsodium-wrappers": "^0.7.9",
"mathjs": "^9.5.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typedi": "^0.10.0",
"uuid": "^8.3.2",
"yt-search": "^2.10.1",
"ytdl-core": "^4.9.1"
},
"devDependencies": {
"@types/node": "^16.10.1",
"@types/yt-search": "^2.3.2",
"dotenv": "^10.0.0",
"husky": "^7.0.2",
"nodemon": "^2.0.13",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "eslint",
"options": {}
},
".ts, .tsx": {
"style": "eslint",
"options": {}
}
}
}