-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
87 lines (87 loc) · 2.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "oceanic.js",
"version": "1.11.2",
"description": "A NodeJS library for interfacing with Discord.",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"module": "./esm.mjs",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"bun": "./dist/lib/index.js",
"require": "./dist/lib/index.js",
"import": "./esm.mjs"
}
},
"scripts": {
"lint": "eslint lib --ext .ts",
"lint:fix": "eslint lib --ext .ts --fix",
"prepare": "rimraf dist && tsc -p tsconfig.json && cp -r lib/types dist/lib/types",
"test:build": "pnpm run prepare",
"test:esm": "node --no-warnings --no-deprecation --experimental-specifier-resolution=node esm.mjs",
"test:docs": "rimraf docs && npx --yes typedoc --options static/typedoc.json",
"test": "pnpm run lint && pnpm run test:build && pnpm run test:esm && pnpm run test:docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OceanicJS/Oceanic.git"
},
"keywords": [
"discord",
"library",
"discord-api",
"api"
],
"author": "Donovan Daniels <[email protected]>",
"contributors": [
"Nuckyz (https://github.com/Nuckyz)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/OceanicJS/Oceanic/issues"
},
"homepage": "https://github.com/OceanicJS/Oceanic#readme",
"devDependencies": {
"@favware/npm-deprecate": "^2.0.0",
"@mxssfd/typedoc-theme": "^1.1.3",
"@types/node": "^18.19.59",
"@types/pako": "^2.0.3",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"erlpack": "^0.1.4",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"fzstd": "^0.1.1",
"pako": "^2.1.0",
"rimraf": "^6.0.1",
"typedoc": "~0.25.13",
"typedoc-plugin-extras": "~3.0.0",
"typedoc-plugin-mdn-links": "^3.3.4",
"typedoc-plugin-merge-modules": "^5.1.0",
"typescript": "~5.4.5",
"undici-types": "^5.28.4",
"zlib-sync": "^0.1.9"
},
"dependencies": {
"tslib": "^2.8.0",
"ws": "^8.18.0"
},
"engines": {
"node": ">=18.13.0"
},
"optionalDependencies": {
"@discordjs/voice": "^0.17.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}