-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"dependencies": {
"@discordeno/bot": "^19.0.0-next.402f1b3",
"better-sqlite3": "^11.1.2",
"dotenv": "^16.4.5",
"ms": "^2.1.3"
},
"devDependencies": {
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.0",
"@types/better-sqlite3": "^7.6.11",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.11",
"typescript": "^5.5.3"
},
"main": "dist/index.js",
"type": "module",
"name": "greenbot",
"version": "1.0.0",
"description": "Multi-purpose Discord bot for the Greenhouse Discords.",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"start": "node dist/index.js",
"build": "swc src --strip-leading-paths --delete-dir-on-start --out-dir dist",
"register-commands": "node dist/registerCommands.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreenhouseTeam/greenbot.git"
},
"author": "Greenhouse Team, MerchantPug",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/GreenhouseTeam/greenbot/issues"
},
"homepage": "https://github.com/GreenhouseTeam/greenbot#readme"
}