cosmonarchy-bw-prerelease/tools/tbl/package.json

27 lines
692 B
JSON
Raw Normal View History

{
"name": "@cosmonarchy/tbl",
"version": "1.0.0",
"type": "module",
"description": "Round-trip compiler between StarCraft: Brood War .tbl string tables and a plain-text .tbl.txt source format.",
"license": "MIT",
"module": "src/index.ts",
"bin": {
"tbl": "src/cli.ts"
},
"scripts": {
"tbl": "bun run src/cli.ts",
"build": "bun run src/cli.ts build ../../mpq",
"check": "bun run src/cli.ts build ../../mpq --check",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@effect/platform-bun": "4.0.0-rc.112",
"effect": "4.0.0-rc.112"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.0"
}
}