Bun is the runtime, bundler, test runner and SQLite driver, so zod is the only dependency. Strict TS with noUncheckedIndexedAccess. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
18 lines
330 B
JSON
18 lines
330 B
JSON
{
|
|
"name": "gacha-event-tracker",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "bun test",
|
|
"typecheck": "tsc --noEmit",
|
|
"parse": "bun run scripts/parse-fixture.ts"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.1.10",
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|