-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 890 Bytes
/
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
{
"name": "sapphire",
"version": "1.0.0",
"description": "A simple discord bot built with sapphire framework",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"build": "npx tsc",
"dev": "npx tsc && node dist/index.js",
"watch": "npx tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DuckoDas/sapphire.git"
},
"keywords": [
"discord",
"discordjs",
"sapphire",
"sapphire-framework"
],
"author": "Ducko#7068",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/DuckoDas/sapphire/issues"
},
"homepage": "https://github.com/DuckoDas/sapphire#readme",
"devDependencies": {
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@sapphire/framework": "^4.4.3",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3"
}
}