-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.63 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.63 KB
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
{
"author": "Ayfri",
"bugs": {
"url": "https://github.com/Ayfri/Advanced-Command-Handler/issues"
},
"dependencies": {
"argumentorum": "^0.1.1",
"chalk": "^5.4.1",
"dayjs": "^1.11.13",
"discord.js": "^14.18.0",
"discord.js-better-embed": "^1.4.0"
},
"description": "A package to help you create a bot with only 1 main file, directories for your events/commands, with some helpers classes and functions.",
"devDependencies": {
"discord-api-types": "^0.37.119",
"@types/node": "^22.13.11",
"eslint": "^9.22.0",
"eslint-plugin-jsdoc": "^50.6.8",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0"
},
"engineStrict": true,
"engines": {
"node": ">=18.6"
},
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"types",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/Ayfri/Advanced-Command-Handler",
"keywords": [
"discord",
"command-handler",
"discord-bot",
"discordjs"
],
"license": "ISC",
"main": "dist/index.js",
"maintainers": [
"ayfri"
],
"name": "advanced-command-handler",
"readme": "https://github.com/Ayfri/Advanced-Command-Handler#readme",
"repository": {
"type": "github",
"url": "git://github.com/Ayfri/Advanced-Command-Handler/tree/package.git"
},
"scripts": {
"build": "tsc",
"lint": "npx eslint",
"prepare": "npm run build",
"prettier": "prettier **.json **.md src tests --write -c .prettierrc"
},
"type": "module",
"types": "types/index.d.ts",
"version": "3.1.0"
}