mirror of
https://gitlab.com/the-no-frauds-club/cosmonarchy-bw-prerelease.git
synced 2026-09-17 01:01:12 +00:00
27 lines
692 B
JSON
27 lines
692 B
JSON
|
|
{
|
||
|
|
"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"
|
||
|
|
}
|
||
|
|
}
|