32 lines
956 B
JSON
32 lines
956 B
JSON
{
|
|
"name": "apistate",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"cli": "bun scripts/apistate-cli.ts --config config/sub2rank.yaml",
|
|
"api": "bun --hot src/api.ts --config config/sub2rank.yaml --runtime native",
|
|
"worker": "bun src/worker.ts --config config/sub2rank.yaml --runtime native",
|
|
"dev:web": "APISTATE_CONFIG_PATH=config/sub2rank.yaml APISTATE_RUNTIME_ID=native bunx vite --config vite.config.ts",
|
|
"server": "bun src/api.ts --config config/sub2rank.yaml --runtime k8s",
|
|
"check": "bunx tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@temporalio/client": "^1.20.3",
|
|
"@temporalio/worker": "^1.20.3",
|
|
"@temporalio/workflow": "^1.20.3",
|
|
"luxon": "^3.7.2",
|
|
"yaml": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.21",
|
|
"@types/luxon": "^3.7.1",
|
|
"typescript": "^5.9.2",
|
|
"vite": "^8.1.5"
|
|
},
|
|
"trustedDependencies": [
|
|
"@swc/core",
|
|
"protobufjs"
|
|
]
|
|
}
|