ts-defaults/package.json
creations 8bc8524634
Some checks failed
Code quality checks / biome (push) Failing after 8s
first commit
2025-05-24 06:45:34 -04:00

22 lines
493 B
JSON

{
"name": "ts-template",
"version": "1.0.0",
"description": "",
"private": true,
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --hot src/index.ts --dev",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --fix",
"cleanup": "rm -rf logs node_modules bun.lock"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.13"
},
"dependencies": {
"@creations.works/logger": "^1.0.3"
}
}