-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "@acegoal07/discordjs-pagination",
"version": "1.5.9",
"description": "A simple pagination for Discord.js",
"main": "index",
"types": "types",
"repository": {
"type": "git",
"url": "git+https://github.com/acegoal07/discordjs-pagination.git"
},
"keywords": [
"acegoal07",
"Discord",
"Buttons",
"Pagination",
"discord-buttons",
"paginator",
"discordjs",
"discord.js"
],
"author": "acegoal07",
"license": "MIT",
"bugs": {
"url": "https://github.com/acegoal07/discordjs-pagination/issues"
},
"homepage": "https://github.com/acegoal07/discordjs-pagination#readme",
"dependencies": {
"discord.js": "^14.7.1",
"typescript": "^5.3.3"
},
"scripts": {
"build": "npm run buildTypes && npm run tscBuild && npm run copyFiles",
"build+publish": "npm run build && cd dist && npm publish",
"buildTypes": "npx -p typescript tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"tscBuild": "npx tsc",
"copyFiles": "xcopy /s/y src dist && xcopy /y package.json dist && xcopy /y readme.md dist && xcopy /y lICENSE dist"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^18.11.18"
}
}