Initial Commit

This commit is contained in:
JB
2025-10-06 23:31:31 -04:00
commit 0c8630b8ba
243 changed files with 166945 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "star-kitten",
"version": "0.0.0",
"description": "Star Kitten framework",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun --filter '*' build",
"dev": "bun --filter '*' dev",
"test": "bun --filter '*' test",
"get-data": "bun refresh:reference-data && bun refresh:hoboleaks && bun static-export",
"refresh:reference-data": "bun run ./packages/util/dist/downloadAndExtract.js https://data.everef.net/reference-data/reference-data-latest.tar.xz ./data/reference-data",
"refresh:hoboleaks": "bun run ./packages/util/dist/downloadAndExtract.js https://data.everef.net/hoboleaks-sde/hoboleaks-sde-latest.tar.xz ./data/hoboleaks",
"static-export": "bun run ./packages/eve/scripts/exportSolarSystems.ts"
},
"dependencies": {
"node-cache": "^5.1.2"
}
}