commandkit 0.1.10-dev.20231214182432 → 0.1.10
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.
- package/package.json +56 -56
package/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
"name": "commandkit",
|
|
3
|
+
"description": "Beginner friendly command & event handler for Discord.js",
|
|
4
|
+
"version": "0.1.10",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"bin": "./bin/index.mjs",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"import": "./dist/index.mjs",
|
|
14
|
+
"types": "./dist/index.d.ts"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"bin"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"lint": "tsc",
|
|
23
|
+
"dev": "tsup --watch",
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"deploy": "npm publish",
|
|
26
|
+
"deploy-dev": "npm publish --access public --tag dev",
|
|
27
|
+
"test": "cd ./tests && node ../bin/index.mjs dev",
|
|
28
|
+
"test:build": "cd ./tests && node ../bin/index.mjs build",
|
|
29
|
+
"test:prod": "cd ./tests && node ../bin/index.mjs start"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"url": "git+https://github.com/underctrl-io/commandkit.git"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://commandkit.js.org",
|
|
35
|
+
"keywords": [
|
|
36
|
+
"discord.js",
|
|
37
|
+
"command handler",
|
|
38
|
+
"event handler"
|
|
39
|
+
],
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"commander": "^11.1.0",
|
|
42
|
+
"dotenv": "^16.3.1",
|
|
43
|
+
"ora": "^7.0.1",
|
|
44
|
+
"rfdc": "^1.3.0",
|
|
45
|
+
"rimraf": "^5.0.5",
|
|
46
|
+
"tsup": "^7.2.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/node": "^20.5.9",
|
|
50
|
+
"discord.js": "^14.13.0",
|
|
51
|
+
"tsconfig": "workspace:*",
|
|
52
|
+
"tsx": "^3.12.8",
|
|
53
|
+
"typescript": "^5.1.6"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"discord.js": "^14"
|
|
15
57
|
}
|
|
16
|
-
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"bin"
|
|
20
|
-
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"lint": "tsc",
|
|
23
|
-
"dev": "tsup --watch",
|
|
24
|
-
"build": "tsup",
|
|
25
|
-
"deploy": "npm publish",
|
|
26
|
-
"deploy-dev": "npm publish --access public --tag dev",
|
|
27
|
-
"test": "cd ./tests && node ../bin/index.mjs dev",
|
|
28
|
-
"test:build": "cd ./tests && node ../bin/index.mjs build",
|
|
29
|
-
"test:prod": "cd ./tests && node ../bin/index.mjs start"
|
|
30
|
-
},
|
|
31
|
-
"repository": {
|
|
32
|
-
"url": "git+https://github.com/underctrl-io/commandkit.git"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://commandkit.js.org",
|
|
35
|
-
"keywords": [
|
|
36
|
-
"discord.js",
|
|
37
|
-
"command handler",
|
|
38
|
-
"event handler"
|
|
39
|
-
],
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"commander": "^11.1.0",
|
|
42
|
-
"dotenv": "^16.3.1",
|
|
43
|
-
"ora": "^7.0.1",
|
|
44
|
-
"rfdc": "^1.3.0",
|
|
45
|
-
"rimraf": "^5.0.5",
|
|
46
|
-
"tsup": "^7.2.0"
|
|
47
|
-
},
|
|
48
|
-
"devDependencies": {
|
|
49
|
-
"@types/node": "^20.5.9",
|
|
50
|
-
"discord.js": "^14.13.0",
|
|
51
|
-
"tsconfig": "workspace:*",
|
|
52
|
-
"tsx": "^3.12.8",
|
|
53
|
-
"typescript": "^5.1.6"
|
|
54
|
-
},
|
|
55
|
-
"peerDependencies": {
|
|
56
|
-
"discord.js": "^14"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
58
|
+
}
|