-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.04 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
88
89
{
"name": "pagination.djs",
"version": "4.0.17",
"description": "A discord.js compatible pagination module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"docs": "typedoc",
"build": "tsup",
"format": "prettier --write . --cache",
"lint": "eslint . --fix --cache",
"typecheck": "tsc -p tsconfig.base.json",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"postinstall": "husky .github/husky",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable"
},
"keywords": [
"pagination",
"discord",
"discord.js",
"pagination.djs",
"pagination-discord",
"pagination-discord.js",
"pagination-djs",
"discord-pagination",
"discord-button-pagination"
],
"author": "imranbarbhuiya",
"license": "MIT",
"files": [
"dist/**/*.js*",
"dist/**/*.mjs*",
"dist/**/*.d*"
],
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@favware/cliff-jumper": "^5.0.0",
"@favware/npm-deprecate": "^2.0.0",
"cz-conventional-changelog": "^3.3.0",
"discord.js": "^14.16.3",
"eslint": "^9.17.0",
"eslint-config-mahir": "^1.0.7",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.2"
},
"peerDependencies": {
"discord.js": "^14.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imranbarbhuiya/pagination.djs.git"
},
"bugs": {
"url": "https://github.com/imranbarbhuiya/pagination.djs/issues"
},
"homepage": "https://pagination-djs.js.org",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"packageManager": "[email protected]"
}