-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
54
55
56
57
58
59
60
{
"name": "kearsarge",
"version": "1.0.3",
"description": "An alternative set of strategies for @discordjs/ws using CloudStorm",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "npm run build:ts && npm run build:docs",
"build:ts": "tsup --config tsup-config.json",
"build:docs": "typedoc --theme default --readme README.md --out docs/ --entryPointStrategy expand src/.",
"lint": "eslint . --ext .ts --fix",
"prepare": "npm run build:ts"
},
"keywords": [
"discord",
"discord.js",
"discordjs",
"bot",
"api",
"gateway"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Deivu/Kearsarge.git"
},
"author": "Deivu (Saya)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Deivu/Kearsarge/issues"
},
"homepage": "https://github.com/Deivu/Kearsarge#readme",
"dependencies": {
"@discordjs/collection": "^1.5.1",
"@discordjs/ws": "^1.0.0",
"@sapphire/async-queue": "^1.5.0",
"@vladfrangu/async_event_emitter": "^2.2.2",
"discord-api-types": "^0.37.50",
"indomitable": "^4.0.3"
},
"devDependencies": {
"@augu/eslint-config": "^4.0.1",
"@types/node": "^20.3.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"tsup": "^7.0.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
}
}