-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "scorpio-bot",
"version": "3.0.0",
"description": "Fully modular Discord bot built with both user and developer experience in mind.",
"main": "build/index.js",
"keywords": [],
"author": {
"name": "Scorpio Team"
},
"type": "module",
"engines": {
"node": ">=20.20.0"
},
"license": "AGPL-3.0-only",
"scripts": {
"scorpio": "run-s build && node build/cli/index.js",
"build": "tsc && cpy . \"!**/*.ts\" \"../build\" --cwd=\"src/\"",
"start": "node build/index.js",
"deploy": "run-s build start"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.93",
"adm-zip": "^0.5.16",
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"cpy-cli": "^7.0.0",
"dayjs": "^1.11.13",
"discord.js": "^14.25.1",
"dotenv": "^16.5.0",
"express": "^5.2.1",
"knex": "^3.1.0",
"ms": "^2.1.3",
"npm-run-all": "^4.1.5",
"package-manager-detector": "^1.3.0",
"semver": "^7.7.2",
"yaml": "^2.8.0"
},
"devDependencies": {
"@types/adm-zip": "^0",
"@types/express": "^5",
"@types/ms": "^2",
"@types/node": "^24.0.3",
"@types/semver": "^7.7.0",
"javascript-obfuscator": "^5.3.0",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.9.2"
}