-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 820 Bytes
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
{
"name": "moohan",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc",
"dev": "node --loader ts-node/esm/transpile-only src/dev.ts",
"start": "node build/main.js"
},
"dependencies": {
"@discordx/importer": "^1.3.1",
"discord.js": "^14.15.3",
"discordx": "^11.11.1",
"dotenv": "^16.4.5",
"luxon": "^3.5.0",
"node-html-better-parser": "^1.4.7",
"openai": "^4.68.1",
"reflect-metadata": "^0.2.2",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.4",
"chokidar": "^3.6.0",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}