-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "AikouAI",
"version": "1.18.0",
"description": "A simple AikouAI bot for discord",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node .",
"build": "tsc --project tsconfig.json",
"clean:windows": "rmdir /s /q dist",
"clean:linux": "rm -rf dist",
"lint": "biome lint --write src/",
"format": "biome format --write src/",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate dev --name init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucasB25/AikouAI.git"
},
"bugs": {
"url": "https://github.com/LucasB25/AikouAI/issues"
},
"homepage": "https://github.com/LucasB25/AikouAI#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/i18n": "^0.13.12",
"@types/node": "^22.10.1",
"@types/signale": "^1.4.7",
"prisma": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"keywords": [
"discord",
"gemini",
"bot",
"ai",
"generative",
"canvas",
"typescript",
"replicate"
],
"author": "LucasB25",
"license": "GPL-3.0",
"signale": {
"displayScope": true,
"displayBadge": true,
"displayDate": true,
"displayFilename": true,
"displayLabel": true,
"displayTimestamp": true,
"underlineLabel": true
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@napi-rs/canvas": "^0.1.64",
"@prisma/client": "^6.0.0",
"axios": "^1.7.8",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"i18n": "^0.15.1",
"replicate": "^1.0.1",
"signale": "^1.4.0",
"undici": "^7.0.0"
}
}