-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "dumpling-bot",
"module": "index.ts",
"type": "module",
"version": "0.3.1",
"description": "A Discord bot for fun, utility & moderation commands written in Bun.",
"author": "document10",
"author_website": "https://document10.github.io",
"source_host": "Github",
"homepage": "https://github.com/document10/dumpling-bot",
"keywords": [
"discord",
"discordjs",
"discord-api",
"bot",
"javascript",
"typescript",
"js",
"ts",
"moderation",
"fun",
"utility",
"commands",
"slash-commands",
"search",
"bun",
"bunjs"
],
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/document10/dumpling-bot.git"
},
"private": true,
"devDependencies": {
"@types/bun": "latest",
"jimp": "^1.6.0",
"jsqr": "^1.4.0"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.84",
"@sourcebin/linguist": "^0.0.3",
"@types/qrcode": "^1.5.6",
"discord.js": "^14.25.1",
"qrcode": "^1.5.4"
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun --watch src/index.ts",
"deploy-local": "bun src/scripts/deploy-commands.ts local",
"deploy-global": "bun src/scripts/deploy-commands.ts global",
"db-setup": "bun src/scripts/db-utils.ts setup",
"db-secrets": "bun src/scripts/db-utils.ts update",
"db-export": "bun src/scripts/db-utils.ts export",
"db-purge": "bun src/scripts/db-utils.ts purge",
"db-help": "bun src/scripts/db-utils.ts help",
"format": "deno fmt --ignore=README.md"
}
}