{ "name": "@star-kitten/eve", "version": "0.0.0", "description": "Star Kitten Eve library", "type": "module", "license": "MIT", "homepage": "https://github.com/author/library#readme", "bugs": { "url": "https://github.com/author/library/issues" }, "repository": { "type": "git", "url": "git+https://github.com/author/library.git" }, "author": "Author Name ", "files": [ "dist" ], "exports": { ".": "./dist/index.js", "./*": "./dist/*", "./esi": "./dist/esi/index.js", "./db": "./dist/db/index.js", "./ref": "./dist/ref/index.js", "./third-party": "./dist/third-party/index.js", "./models": "./dist/models/index.js", "./package.json": "./package.json", "./data/*": "./data/*" }, "publishConfig": { "access": "public" }, "devDependencies": { "@types/bun": "^1.2.21", "@types/jsonwebtoken": "^9.0.10", "@types/jwk-to-pem": "^2.0.3", "@types/node": "^22.15.17", "@vitest/coverage-v8": "^3.2.4", "bumpp": "^10.1.0", "drizzle-kit": "^0.31.4", "prettier-plugin-multiline-arrays": "^4.0.3", "tsdown": "^0.14.2", "typescript": "^5.9.2" }, "dependencies": { "@orama/orama": "^3.1.13", "@oslojs/encoding": "^1.1.0", "@star-kitten/util": "workspace:^0.0.0", "drizzle-orm": "^0.44.5", "fp-filters": "^0.5.4", "jsonwebtoken": "^9.0.2", "jwk-to-pem": "^2.0.7", "jwt-decode": "^4.0.0", "stream-chain": "^3.4.0", "stream-json": "^1.9.1" }, "scripts": { "build": "tsdown", "dev": "tsdown --watch", "test": "bun test", "typecheck": "tsc --noEmit", "release": "bumpp && npm publish", "generate-migrations": "bunx drizzle-kit generate --dialect sqlite --schema ./src/db/schema.ts", "migrate": "bun run ./src/db/migrate.ts", "get-data": "bun refresh:reference-data && bun refresh:hoboleaks && bun static-export", "refresh:reference-data": "bun run ../util/dist/download-and-extract.js https://data.everef.net/reference-data/reference-data-latest.tar.xz ./data/reference-data", "refresh:hoboleaks": "bun run ../util/dist/download-and-extract.js https://data.everef.net/hoboleaks-sde/hoboleaks-sde-latest.tar.xz ./data/hoboleaks", "static-export": "bun run ./scripts/export-solar-systems.ts" } }