-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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": "vanguard",
"version": "1.0.0",
"description": "A module to make the newer d.js ws work with v14",
"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"
}
},
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsup --config tsup-config.json",
"prepare": "npm run build:ts"
},
"author": "Deivu (Saya)",
"license": "MIT",
"devDependencies": {
"@augu/eslint-config": "^4.0.1",
"@types/node": "^20.4.5",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.22.0",
"tsup": "^6.7.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"dependencies": {
"@discordjs/util": "^1.0.0",
"@discordjs/ws": ">=1.x.x",
"@sapphire/async-queue": "^1.5.0",
"discord-api-types": "^0.37.51",
"discord.js": ">=14.x.x"
}
}