-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "chatgpt",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "node --loader ts-node/esm/transpile-only src/index.ts",
"start": "tsc && node build/index.js",
"watch": "nodemon --exec npm run dev --watch src --ext ts"
},
"dependencies": {
"@discordx/importer": "^1.3.0",
"chalk": "^5.3.0",
"discord.js": "^14.12.1",
"discordx": "^11.9.0",
"dotenv": "^16.4.5",
"openai": "^4.32.0"
},
"devDependencies": {
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,scss,html,json,yml,yaml,md,mdx}": "prettier --write"
}
}