-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.67 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
66
67
68
69
70
71
72
73
74
{
"name": "discraft",
"version": "1.6.9-beta.0",
"description": "Create and deploy production Discord bots in minutes",
"type": "module",
"packageManager": "bun@1.2.2",
"scripts": {
"prepublish": "bun run build",
"build": "cd package && bun build.ts",
"lint": "eslint . --no-cache",
"typecheck": "tsc --noEmit"
},
"bin": {
"discraft": "package/dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Best-Codes/discraft-js.git"
},
"keywords": [
"discord",
"bot",
"framework",
"cli"
],
"files": [
"package/dist",
"templates",
"README.md",
"LICENSE"
],
"author": "The-Best-Codes",
"contributors": [
{
"name": "BestCodes",
"email": "admin@bestcodes.dev",
"url": "https://bestcodes.dev"
},
{
"name": "Arnav K",
"url": "https://github.com/ArnavK-09"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/The-Best-Codes/discraft-js/issues"
},
"homepage": "https://github.com/The-Best-Codes/discraft-js#readme",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/bun": "^1.2.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.1",
"bun": "^1.2.2",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"typescript-eslint": "^8.23.0"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@inquirer/core": "^10.1.6",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"consola": "^3.4.0",
"esbuild": "^0.24.2",
"esbuild-node-externals": "^1.16.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"inquirer": "^12.4.1",
"kleur": "^4.1.5"
}
}