mirror of
https://github.com/delibae/claude-prism.git
synced 2026-08-28 05:14:59 +00:00
23 lines
522 B
JSON
23 lines
522 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", ".wrangler/**", "dist/**"],
|
|
"env": [
|
|
"OPENAI_API_KEY",
|
|
"LATEX_API_URL",
|
|
"KV_REST_API_URL",
|
|
"KV_REST_API_TOKEN"
|
|
]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
},
|
|
"globalEnv": [],
|
|
"globalDependencies": [".env", ".env.local"]
|
|
}
|