-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
49
50
51
52
53
{
"name": "@live-apps/discord",
"version": "1.0.20",
"description": "Discord Client with shared cache, rate-limiting and events de-duplication mechanism",
"author": "Jaga <jagadheesh6@gmail.com>",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md"
],
"keywords": [
"typescript",
"discord",
"live-apps"
],
"scripts": {
"dev": "nodemon src/index.ts",
"build:local": "tsc && npm pack",
"publish": "tsc && npm publish --access=public",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/live-apps-in/discord.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/live-apps-in/discord/issues"
},
"homepage": "https://github.com/live-apps-in/discord#readme",
"dependencies": {
"axios": "^1.6.2",
"discord.js": "^14.14.1",
"inversify": "^6.0.2",
"ioredis": "^5.3.2",
"reflect-metadata": "^0.2.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@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",
"typescript": "^5.3.3"
}
}