-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.09 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
{
"name": "botcynx-typescript",
"version": "2.6",
"description": "a discord bot made in typescript based on an earlier project",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"postbuild": "chmod +x clean.sh && ./clean.sh",
"watch": "tsc -w",
"quickstart": "npm run build && node dist/index.js",
"test:api": "node dist/lib/test/gitPull.js",
"start:prod": "node dist/index.js --setEnv prod",
"quickstart:dev": "npm run build && node dist/index.js --setEnv dev --showCallStack true --showDiscordAPIErrors true",
"quickstart:debug": "npm run build && node dist/index.js --setEnv debug --showCallStack true --showDiscordAPIErrors true",
"pm2:prod": "pm2 start --name botcynx-prod dist/index.js -- --setEnv prod",
"pm2:dev": "pm2 start --no-daemon --name botcynx-dev dist/index.js -- --setEnv dev --showCallStack true --showDiscordAPIErrors true",
"pm2:debug": "pm2 start --no-daemon --name botcynx-debug dist/index.js -- --setEnv debug --showCallStack true --showDiscordAPIErrors true",
"pm2:stop": "pm2 stop all"
},
"repository": {
"type": "git",
"url": "https://github.com/ascynx-betas/botcynx-typescript"
},
"keywords": [
"discord",
"javascript",
"discord.js"
],
"engines": {
"node": "^18.1.0"
},
"author": "Ascynx",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "github:discordjs/opus",
"ansi-regex": "^6.0.1",
"chalk": "^4.1.2",
"crypto-js": "^4.1.1",
"discord.js": "^14.12.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"ffmpeg-static": "^5.0.2",
"form-data": "^4.0.0",
"glob": "^8.0.3",
"lilyweight": "github:Antonio32A/lilyweight",
"mongoose": "^7.3.4",
"ms": "^2.1.3",
"opusscript": "^0.0.8",
"pako": "^2.0.4",
"qrcode-reader": "^1.0.4",
"sh": "^0.0.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/ms": "^0.7.31",
"@types/node": "^18.7.13",
"@types/node-fetch": "^2.6.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0"
}
}