This repository was archived by the owner on Aug 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.79 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ansenbot",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/src/main.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "ts-node-esm --experimental-specifier-resolution=node src/main.ts",
"start": "node --experimental-specifier-resolution=node build/src/main.js",
"watch": "nodemon --exec ts-node-esm --experimental-specifier-resolution=node src/main.ts",
"lint": "eslint --ext .ts src --fix",
"ingest": "tsx -r dotenv/config src/lib/ansen-gpt/utils/ingestData.ts"
},
"dependencies": {
"@discordx/importer": "^1.2.2",
"@discordx/pagination": "^3.4.1",
"@discordx/utilities": "^5.2.1",
"@pinecone-database/pinecone": "^0.1.6",
"@vitalets/google-translate-api": "^9.2.0",
"axios": "^1.4.0",
"cors": "^2.8.5",
"dedent": "^0.7.0",
"discord.js": "^14.11.0",
"discordx": "^11.7.6",
"dotenv": "^16.3.1",
"eventsource": "^2.0.2",
"express": "^4.18.2",
"ffmpeg-static": "^5.1.0",
"fluent-ffmpeg": "^2.1.2",
"imagekit": "^4.1.3",
"jszip": "^3.10.1",
"just-split": "^3.2.0",
"langchain": "^0.0.96",
"lodash.kebabcase": "^4.1.1",
"lodash.random": "^3.2.0",
"lodash.shuffle": "^4.2.0",
"lodash.split": "^4.4.2",
"mustache": "^4.2.0",
"pocketbase": "^0.15.2",
"sharp": "^0.32.1",
"string-progressbar": "^1.0.4",
"text-table": "^0.2.0",
"winston": "^3.9.0",
"winston-transport": "^4.5.0",
"ytdl-core": "github:milanbabiclibrafire/node-ytdl-core",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@total-typescript/ts-reset": "^0.4.2",
"@types/cors": "^2.8.13",
"@types/dedent": "^0.7.0",
"@types/eventsource": "^1.1.11",
"@types/express": "^4.17.17",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/lodash.random": "^3.2.7",
"@types/lodash.shuffle": "^4.2.7",
"@types/lodash.split": "^4.4.7",
"@types/mustache": "^4.2.2",
"@types/node": "^20.3.1",
"@types/prettier": "^2.7.3",
"@types/text-table": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"tsx": "^3.12.7",
"typescript": "5.1.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}