-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.06 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "opencode-oauth2-workspace",
"version": "0.4.1",
"private": true,
"description": "Workspace for @vymalo/opencode-oauth2 — OAuth2/OIDC-secured OpenAI-compatible providers for OpenCode.",
"packageManager": "pnpm@11.3.0",
"scripts": {
"build": "pnpm -r build",
"lint": "biome lint packages test-env *.json",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"test:env:up": "docker compose -f test-env/docker-compose.yml up -d --wait",
"test:env:down": "docker compose -f test-env/docker-compose.yml down -v",
"test:integration:run": "INTEGRATION_MODELS_INFO_URL=${INTEGRATION_MODELS_INFO_URL:-http://127.0.0.1:18080/v1/models} pnpm -r --if-present test:integration",
"test:integration": "pnpm test:env:up && (pnpm test:integration:run; status=$?; pnpm test:env:down; exit $status)",
"format": "biome format --write packages test-env *.json",
"format:check": "biome format packages test-env *.json"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^25.9.1",
"typescript": "^6.0.3"
}
}