-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
64 lines (64 loc) · 1.43 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
{
"name": "@discordx/pagination",
"version": "3.5.5",
"private": false,
"description": "Library for creating pagination messages in Discord bots",
"keywords": [
"bot",
"discord",
"discordx",
"javascript",
"pagination",
"typescript",
"utilities"
],
"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/vijayymmeena)"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"CHANGELOG.md",
"LICENSE.txt",
"README.md",
"SECURITY.md",
"package.json"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"build:typedoc": "npx typedoc src/index.ts --out ../../docs/static/api/pagination"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.17.7",
"discord.js": "^14.16.2",
"typescript": "5.6.2"
},
"peerDependencies": {
"discord.js": ">=14 || ^14.0.0-dev"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
}
}