This repository was archived by the owner on Sep 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.69 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.69 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
{
"name": "@qwit-development/domain-unchained",
"version": "v0.2.0",
"description": "Domain is a feature-rich Discord chatbot powered by OpenAI-compatible APIs. It's designed to be highly configurable and extensible, offering a wide array of functionalities to enhance your Discord server.",
"homepage": "https://github.com/QwIT-Development/Domain#readme",
"bugs": {
"url": "https://github.com/QwIT-Development/Domain/issues"
},
"license": "AGPL-3.0-or-later",
"author": "Anchietae <contact@anchietae.cc> (https://anchietae.cc)",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/QwIT-Development/Domain.git"
},
"dependencies": {
"@discordjs/rest": "^2.5.1",
"openai": "^5.10.2",
"@modelcontextprotocol/sdk": "^1.16.0",
"@prisma/client": "^6.12.0",
"@sentry/bun": "^9.40.0",
"cheerio": "^1.1.0",
"discord-api-types": "^0.38.16",
"discord.js": "^14.21.0",
"ejs": "^3.1.10",
"fuse.js": "^7.1.0",
"html-to-text": "^9.0.5",
"lz-string": "^1.5.0",
"ora": "^8.2.0",
"prisma": "^6.12.0",
"robots-parser": "^3.0.1",
"sharp": "^0.34.3",
"toml": "^3.0.0"
},
"overrides": {
"brace-expansion": "^4.0.1"
},
"engines": {
"bun": "*"
},
"private": true,
"scripts": {
"start": "bun run index.js --smol",
"update": "bun update",
"build-all": "docker buildx build --platform linux/amd64,linux/arm64 --tag balazsmanus/domain:latest --push .",
"build": "docker buildx build --platform linux/amd64 --tag balazsmanus/domain:latest --push .",
"build-dev": "docker buildx build --platform linux/amd64 --tag balazsmanus/domain:dev --push ."
},
"packageManager": "bun@1.2.14"
}