-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 868 Bytes
/
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
{
"name": "node-ts-template",
"version": "1.0.0",
"author": "Leon de Klerk",
"repository": {
"type": "git",
"url": "git://github.com/leondeklerk/node-ts-template"
},
"main": "index.ts",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "1.1.6",
"husky": "9.1.4",
"lint-staged": "15.2.8",
"typescript": "5.5.4"
},
"description": "Node typescript template",
"keywords": [],
"license": "MIT",
"lint-staged": {
"*": "biome check --no-errors-on-unmatched"
},
"scripts": {
"check": "bunx @biomejs/biome check .",
"check:fix": "bunx @biomejs/biome check --apply .",
"dev": "bun --watch run src/index.ts",
"build": "bun run type-check && bun run build-only",
"type-check": "tsc --noEmit -p tsconfig.json",
"start": "bun run dist/index.js",
"prepare": "bun run scripts/install.mjs",
"build-only": "bunx --bun tsc"
}
}