-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.64 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.64 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
73
{
"name": "@harmonixjs/core",
"version": "1.0.4",
"description": "A modern TypeScript-only Discord.js framework with decorators, database integration, and advanced handlers",
"keywords": [
"discord",
"discordjs",
"bot",
"framework",
"typescript",
"decorators",
"handler",
"commands",
"events",
"database"
],
"author": {
"name": "Maxence Bessi",
"email": "contact@maxence-bessi.com",
"url": "https://maxence-bessi.com"
},
"license": "MIT",
"homepage": "https://github.com/harmonixjs/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/harmonixjs/core.git"
},
"bugs": {
"url": "https://github.com/harmonixjs/core/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js || exit 0",
"clean": "rm -rf dist",
"format": "prettier --write \"src/**/*.ts\""
},
"peerDependencies": {
"discord.js": "^14.15.0",
"typescript": ">=5.0.0"
},
"dependencies": {
"reflect-metadata": "^0.2.2",
"chalk": "^5.3.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/ms": "^0.7.34",
"discord.js": "^14.15.0",
"typescript": "^5.4.0",
"prettier": "^3.2.0"
}
}