-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.83 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
{
"name": "discord.js-pages",
"version": "1.4.4",
"description": "Dynamic pages pagination module for discord.js",
"scripts": {
"build": "tsc && babel build --out-dir lib --copy-files",
"postbuild": "node --experimental-modules --es-module-specifier-resolution=node ./scripts/cleanUp.mjs",
"docs": "typedoc --out docs src/manager.ts --gitRevision master",
"eslint:check": "eslint ./src/**/*",
"eslint:fix": "eslint ./src/**/* --fix"
},
"main": "./lib/manager.js",
"types": "./lib/manager.d.ts",
"exports": {
".": [
{
"require": "./lib/manager.js",
"import": "./esm/index.mjs"
},
"./lib/manager.js"
],
"./esm": "./esm/index.mjs"
},
"author": "MrZillaGold <Pronin Egor | [email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/MrZillaGold/discord.js-pages.git"
},
"bugs": {
"url": "https://github.com/MrZillaGold/discord.js-pages/issues"
},
"homepage": "https://github.com/MrZillaGold/discord.js-pages#readme",
"keywords": [
"discord.js",
"discord",
"pagination",
"pages",
"interaction",
"components"
],
"peerDependencies": {
"discord.js": "^14.3.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.19.0",
"@discordjs/voice": "^0.11.0",
"@types/node": "^18.7.15",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"discord-api-types": "^0.37.7",
"eslint": "^8.23.0",
"typedoc": "^0.23.14",
"typescript": "^4.8.2"
},
"engines": {
"node": ">=16.9.0",
"npm": ">=7.0.0"
}
}