dispod 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/.env +1 -0
  2. package/package.json +38 -0
package/.env ADDED
@@ -0,0 +1 @@
1
+ APP_TOKEN=MTQ3ODc2NjI2NTg2MTY2OTAwOQ.Glrhd9.JWsYtqqWPEjtE1JubivCRU93j42kBIZTgDre_E
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "dispod",
3
+ "version": "0.0.1",
4
+ "description": " A high-performance, file-based routing framework for Discord.js bots.",
5
+ "type": "module",
6
+ "bin": {
7
+ "dispod": "./dist/cli.cjs"
8
+ },
9
+ "main": "./dist/index.cjs",
10
+ "module": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js",
16
+ "require": "./dist/index.cjs"
17
+ }
18
+ },
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "dev": "tsup --watch"
22
+ },
23
+ "dependencies": {
24
+ "commander": "^12.1.0",
25
+ "discord.js": "^14",
26
+ "glob": "^13.0.6",
27
+ "jiti": "^2.4.2",
28
+ "picocolors": "^1.1.1"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "^22.10.2",
32
+ "tsup": "^8.3.5",
33
+ "typescript": "^5.7.2"
34
+ },
35
+ "peerDependencies": {
36
+ "discord.js": "^14"
37
+ }
38
+ }