-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 731 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 731 Bytes
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
{
"name": "linguo",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/haydencrain/linguo.git",
"author": "Hayden Crain",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/node": "^13.11.1",
"nodemon": "^2.0.3",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@discordjs/opus": "^0.1.0",
"axios": "^0.19.2",
"chalk": "^4.0.0",
"discord.js": "^12.1.1",
"query-string": "^6.12.0",
"util": "^0.12.2",
"ytdl": "^1.2.0",
"ytdl-core": "^4.9.0",
"ytdl-core-discord": "^1.3.1"
}
}