-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "discord-paginationembed",
"version": "3.0.0-dev.0",
"description": "A pagination utility for MessageEmbed in Discord.JS",
"main": "./bin/index.js",
"types": "./typings",
"engines": {
"node": ">= 14.0.0"
},
"scripts": {
"test": "gulp",
"test:build": "gulp build",
"test:bot": "node ./test/bot.js",
"dev:start": "nodemon ./test/bot.js --config .nodemon.json",
"dev:watch": "tsc -p . --watch",
"dev:gulp-watch": "gulp watch",
"docs:parse": "npm run gh:build -- --json ./bin/docs.json",
"gh:build": "typedoc",
"prepublishOnly": "npm test",
"pub": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gazmull/discord-paginationembed.git"
},
"keywords": [
"discord",
"discord.js",
"pagination",
"embed",
"paginationembed",
"emoji",
"react",
"leaderboard"
],
"author": "gazmull",
"license": "MIT",
"bugs": {
"url": "https://github.com/gazmull/discord-paginationembed/issues"
},
"homepage": "https://github.com/gazmull/discord-paginationembed#readme",
"peerDependencies": {
"discord.js": "^13.0.0-dev.4206e35.1626393827"
},
"devDependencies": {
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"del": "^5.0.0",
"gulp": "^4.0.2",
"gulp-eslint7": "^0.3.0",
"gulp-terser": "^2.0.1",
"gulp-typescript": "^6.0.0-alpha.1",
"typedoc": "^0.20.30",
"typedoc-neo-theme": "^1.1.0",
"typedoc-plugin-no-inherit": "^1.2.2",
"typescript": "^4.2.3"
}
}