-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.97 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "discraft",
"version": "1.7.11",
"description": "Create and deploy production Discord bots in minutes",
"type": "module",
"packageManager": "bun@1.3.3",
"scripts": {
"prepublish": "bun run build",
"build": "cd package && bun build.ts",
"lint": "eslint .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"update-deps": "bun update --latest && cd templates/ && for dir in */; do echo \"Updating dependencies in templates/$dir\" && cd \"$dir\" && bun update --latest && cd ..; done"
},
"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": "bestcodes.official+discraft@gmail.com",
"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": {
"@biomejs/biome": "^2.3.8",
"@eslint/js": "^9.39.1",
"@types/bun": "^1.3.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.1",
"bun": "^1.3.3",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"dependencies": {
"@clack/core": "^0.5.0",
"@clack/prompts": "^0.11.0",
"chokidar": "^5.0.0",
"commander": "^14.0.2",
"consola": "^3.4.2",
"esbuild": "^0.27.1",
"esbuild-node-externals": "^1.20.1",
"fs-extra": "^11.3.2",
"glob": "^13.0.0",
"kleur": "^4.1.5"
},
"trustedDependencies": [
"@biomejs/biome",
"bun",
"esbuild"
]
}