/ package.json
package.json
1 { 2 "name": "artefact", 3 "module": "src/main.ts", 4 "type": "module", 5 "private": true, 6 "scripts": { 7 "fix": "bun run check", 8 "check": "bun x --bun @biomejs/biome check --fix .", 9 "format": "bun x --bun @biomejs/biome format --fix .", 10 "lint": "bun x --bun @biomejs/biome lint --fix .", 11 "start": "bun run src/main.ts" 12 }, 13 "devDependencies": { 14 "@biomejs/biome": "^2.4.5", 15 "@types/bun": "latest" 16 }, 17 "peerDependencies": { 18 "typescript": "^5.9.3" 19 } 20 }