forked from psibean/discord.js-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "@psibean/discord.js-pagination",
"version": "4.0.5",
"description": "A simple utility to paginate discord embeds based on discord.js-pagination.",
"main": "./src/index.js",
"module": "./src/index.mjs",
"files": [
"src"
],
"exports": {
"./*": "./*",
".": {
"require": "./src/index.js",
"import": "./src/index.mjs"
}
},
"scripts": {
"lint": "eslint src",
"lint:example": "eslint example",
"lint:fix": "eslint src --fix",
"lint:fix:example": "eslint example --fix",
"prepublishOnly": "gen-esm-wrapper ./src/index.js ./src/index.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psibean/discord.js-pagination.git"
},
"keywords": [
"discord.js",
"pagination"
],
"author": "psibean",
"license": "MIT",
"bugs": {
"url": "https://github.com/psibean/discord.js-pagination/issues"
},
"homepage": "https://github.com/psibean/discord.js-pagination#readme",
"devDependencies": {
"discord.js": "^13.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"gen-esm-wrapper": "^1.1.2",
"prettier": "^2.3.2"
}
}