-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "webdev-bot",
"version": "1.0.0",
"description": "Web Dev & Web Design discord bot",
"type": "module",
"scripts": {
"build:ci": "npm run build:ts && npm run build:copy",
"build:dev": "pnpm run build:ts && pnpm run build:copy",
"build:ts": "tsup",
"build:copy": "node scripts/copy-assets.js",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"deploy": "tsx src/util/deploy.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --fix .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"test": "pnpm run build:dev && node --test dist/**/*.test.js",
"test:ci": "node --test dist/**/*.test.js",
"prepare": "husky",
"pre-commit": "lint-staged",
"sync-guides": "tsx scripts/sync-guides.js",
"sync-guides:init": "tsx scripts/sync-guides.js --initialize"
},
"keywords": [],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"dependencies": {
"@discordjs/core": "^2.2.2",
"discord.js": "^14.22.1",
"web-features": "^3.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^24.5.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{ts,js}": [
"biome format --write",
"biome lint --fix"
]
}
}