-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "create-commandkit",
"description": "Effortlessly create a CommandKit project",
"version": "1.2.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"bin": "./dist/index.js",
"type": "module",
"license": "MIT",
"keywords": [
"commandkit",
"create-commandkit",
"discord.js",
"discord",
"node",
"client",
"cli",
"commands"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/neplextech/commandkit",
"directory": "packages/create-commandkit"
},
"homepage": "https://commandkit.dev",
"scripts": {
"check-types": "tsc --noEmit",
"dev": "tsc --watch",
"build": "tsc && tsx scripts/sync-available-examples.ts"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"commander": "^14.0.3",
"fs-extra": "^11.3.3",
"gradient-string": "^3.0.0",
"ora": "^9.3.0",
"picocolors": "^1.1.1",
"tiged": "^2.12.7",
"validate-npm-package-name": "^7.0.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/node": "^25.3.2",
"@types/validate-npm-package-name": "^4.0.2",
"tsconfig": "workspace:*",
"tsx": "^4.21.0",
"typescript": "catalog:build"
}
}