-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
60
61
62
63
64
65
{
"$schema": "https://json.schemastore.org/package.json",
"name": "ascend.js",
"version": "0.0.3",
"description": "A simple and easy-to-use Discord bot library based on discord.js.",
"keywords": [
"discord",
"bot",
"discord.js"
],
"license": "Apache-2.0",
"author": {
"name": "giqnt",
"email": "[email protected]",
"url": "https://giqnt.dev"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup"
},
"dependencies": {
"chalk": "^5.4.1",
"emittery": "^1.1.0",
"luxon": "^3.5.0"
},
"devDependencies": {
"@types/bun": "^1.2.1",
"@types/luxon": "^3.4.2",
"@types/node": "^22.12.0",
"djs-eslint-config": "github:giqnt/djs-eslint-config",
"mongoose": "^8.9.5",
"tsup": "^8.3.6",
"type-fest": "^4.33.0"
},
"peerDependencies": {
"discord.js": "^14.17.3",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}