-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.54 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
{
"name": "discord.js-handler",
"version": "2.0.0",
"description": "A complete discord.js typescript handler.",
"packageManager": "bun@*",
"type": "module",
"main": "src/index.ts",
"scripts": {
"start": "bun run dist/index.js",
"build:start": "bun run --bun tsc && bun run dist/.",
"nodemon": "nodemon dist/.",
"dev": "bun run --watch src/index.ts",
"build": "bun run --bun tsc",
"watch": "bun run --bun tsc -w",
"prepare": "bunx husky",
"lint": "biome lint --no-errors-on-unmatched",
"lint:fix": "biome lint --fix --no-errors-on-unmatched",
"format": "biome check --write --no-errors-on-unmatched --linter-enabled=false --formatter-enabled=true --organize-imports-enabled=true",
"ci": "biome ci --no-errors-on-unmatched --formatter-enabled=true --linter-enabled=true --organize-imports-enabled=true"
},
"lint-staged": {
"*.{ts,cts,mts,js,cjs,mjs}": "biome lint --fix",
"*": "biome check --write --no-errors-on-unmatched --linter-enabled=false --formatter-enabled=true --organize-imports-enabled=true"
},
"author": "3n123",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/bun": "^1.1.8",
"@types/glob": "^8.1.0",
"@types/node": "^22.5.3",
"commitlint": "^19.4.1",
"typescript": "^5.5.4"
},
"dependencies": {
"chalk": "^5.3.0",
"discord.js": "^14.16.1",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"smol-toml": "^1.3.0",
"zod": "^3.23.8"
}
}