-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "loops-bot",
"version": "0.1.0",
"main": "index.js",
"repository": "git@github.com:Code-Sounds/loops-bot.git",
"author": "edmilson-dk <droidvidaboa@gmail.com>",
"license": "MIT",
"scripts": {
"build": "node build.js && rm -rf dist && tsc",
"start": "node dist/index.js",
"start:dev": "ts-node-dev --respawn --pretty --transpile-only --exit-child src/index.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"bugs": {
"url": "git@github.com:Code-Sounds/loops-bot.git/issues"
},
"homepage": "git@github.com:Code-Sounds/loops-bot.git#readme",
"files": [
"index.d.ts",
"index.js",
"dist/index.js",
"dist/**/*"
],
"types": "dist/index.d.ts",
"bin": {
"loops": "dist/index.js"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/cron": "^1.7.3",
"@types/dotenv": "^8.2.0",
"@types/node": "^16.4.3",
"@types/socket.io-client": "^3.0.0",
"prettier": "^2.3.2",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@discordjs/opus": "^0.6.0",
"axios": "^0.21.4",
"chalk": "^4.1.2",
"cron": "^1.8.2",
"discord.js": "12.0.0",
"dotenv": "^10.0.0",
"opusscript": "^0.0.8",
"socket.io-client": "^4.2.0",
"ytdl-core": "^4.9.1"
}
}