forked from discordx-ts/discordx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.88 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
{
"name": "@discordx/pagination",
"version": "0.0.0",
"private": false,
"description": "Add pagination to discord bot using buttons or menu",
"keywords": [
"pagination",
"discord",
"typescript",
"bot",
"javascript",
"utilities",
"discordx"
],
"homepage": "https://github.com/discordx-ts/discordx/tree/main/packages/pagination#readme",
"bugs": {
"url": "https://github.com/discordx-ts/discordx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discordx-ts/discordx.git"
},
"license": "Apache-2.0",
"contributors": [
"Vijay Meena <[email protected]> (https://github.com/samarmeena)"
],
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
}
},
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"files": [
"build",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md",
"package.json"
],
"scripts": {
"build": "tsc && npm run build:cjs",
"build:changelog": "npx @discordx/changelog@latest --src src --match-tag pagination-* --replace-tag pagination-",
"build:cjs": "tsc --module CommonJs --outDir build/cjs && npm run postbuild:cjs",
"build:typedoc": "npx typedoc src/index.ts --out ../../docs/static/api/pagination",
"postbuild:cjs": "node ../../scripts/postbuild.mjs --path=build",
"type-check": "tsc --noemit"
},
"dependencies": {
"lodash": "^4.17.21",
"tslib": "^2.4.1"
},
"devDependencies": {
"@discordx/importer": "^1.1.10",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"discord.js": "^14.7.0",
"discordx": "^11.4.0",
"typescript": "4.9.3"
},
"peerDependencies": {
"discord.js": ">=14 || ^14.0.0-dev"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
}
}