-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 871 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 871 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
31
32
33
{
"name": "discordbot-template-ts",
"version": "1.0.7",
"description": "TypeScript version of DiscordBot-Template",
"main": "./src/bot.ts",
"type": "module",
"scripts": {
"build": "tsc && echo 'Finishing Building'",
"start": "node ./dist/bot.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rilecraft/discordbot-template-ts.git"
},
"author": "RileCraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/rilecraft/discordbot-template-ts/issues"
},
"homepage": "https://github.com/rilecraft/discordbot-template-ts#readme",
"dependencies": {
"discord.js": "^14.14.1",
"ms": "^2.1.3",
"simple-json-db": "^2.0.0",
"tasai": "^1.0.0",
"undici-types": "^5.26.5"
},
"devDependencies": {
"@types/ms": "^0.7.34",
"@types/node": "^20.11.5",
"typescript": "^5.3.3"
}
}