-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "kitty-chan-events",
"version": "1.0.0",
"description": "A lightweight socket client for kitty chan",
"main": "index.js",
"scripts": {
"dev": "nodemon src/main.ts",
"build:kitty_chan_proto": "npx proto-loader-gen-types --grpcLib=@grpc/grpc-js --outDir=./src/proto/ ./src/proto/kitty_chan.proto -y && npm run lint",
"build:proto": "cpx \"./src/proto/*.proto\" ./dist/proto",
"lint": "eslint \"{src,apps,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/live-apps-in/kitty-chan-event.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/live-apps-in/kitty-chan-event/issues"
},
"homepage": "https://github.com/live-apps-in/kitty-chan-event#readme",
"dependencies": {
"@grpc/grpc-js": "^1.9.13",
"@grpc/proto-loader": "^0.7.10",
"@live-apps/discord": "^1.0.20",
"@typegoose/typegoose": "^12.0.0",
"@types/node": "^20.10.5",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"inversify": "^6.0.2",
"protobufjs": "^7.2.5",
"reflect-metadata": "^0.2.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"prettier": "^3.1.1"
}
}