-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "jetdisc",
"version": "3.0.6",
"description": "",
"type": "module",
"main": "built/index.js",
"scripts": {
"start": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"./loader.mjs\", pathToFileURL(\"./\"));' built/src/index.js",
"build": "swc ./src -s -d ./built",
"dev": "tsx watch src/index.ts",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "pnpm lint --fix",
"fmt": "prettier --config ./.prettierrc --list-different \"src/**/*.{js,json,ts,tsx,css,md}\"",
"fmt:fix": "pnpm fmt --write",
"test": "vitest src/",
"test:coverage": "vitest src/ --coverage --silent"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.11.1",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.26",
"@tsconfig/strictest": "2.0.5",
"@types/lodash-es": "4.17.12",
"@types/node": "20.16.10",
"@vitest/coverage-v8": "2.1.1",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.30.0",
"prettier": "3.3.3",
"tsx": "4.19.1",
"typescript": "5.6.2",
"typescript-eslint": "8.8.0",
"vitest": "2.1.1"
},
"dependencies": {
"@discordjs/opus": "0.9.0",
"@discordjs/voice": "0.17.0",
"@t3-oss/env-core": "0.11.1",
"chalk": "5.3.0",
"discord.js": "14.16.2",
"dotenv": "16.4.5",
"libsodium-wrappers": "0.7.15",
"lodash-es": "4.17.21",
"resolve": "1.22.8",
"ytdl-core": "4.11.5",
"zod": "3.23.8"
},
"resolutions": {
"ws": "8.18.0"
}
}