-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "chinokafuusupport",
"version": "1.0.0",
"description": "The support bot of Rabbit House Coffee.",
"main": "build/src/index.js",
"type": "module",
"types": "@types/index.d.ts",
"engines": {
"node": ">=16.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"postinstall": "tsc",
"start": "tsc && node --experimental-specifier-resolution=node .",
"build": "tsc",
"lint:ts": "eslint -c .eslintrc.ts.yml *.ts",
"lint:ts:fix": "eslint -c .eslintrc.ts.yml *.ts --fix && echo \"\u001b[1m\u001b[32mOK\u001b[39m\u001b[22m\" || echo \"\u001b[1m\u001b[31mNot OK\u001b[39m\u001b[22m\""
},
"keywords": [],
"author": "DanielaGC_",
"license": "AGPL-3.0",
"dependencies": {
"axios": "^1.7.8",
"chalk": "^5.3.0",
"eris": "RabbitHouseCorp/eris#dev",
"mongoose": "^8.8.3",
"revolt.io": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"bson": "^6.10.0",
"dotenv": "^16.4.6",
"eslint": "^8.57.1",
"eslint-plugin-sort-class-members": "^1.21.0",
"typescript": "^5.7.2"
}
}