This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ci-agent-runner/app/package.json
T
2026-07-13 20:56:50 +02:00

30 lines
1.0 KiB
JSON

{
"name": "gitea-agent-server",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "tsc -p config/tsconfig.json",
"check": "npm run lint && npm run layout:check && tsc -p config/tsconfig.json --noEmit",
"layout:check": "node scripts/check-layout.mjs ..",
"lint": "biome check --error-on-warnings . ../opencode",
"lint:fix": "biome check --write . ../opencode",
"lint:fix:unsafe": "biome check --write --unsafe . ../opencode",
"lint:ci": "biome ci --error-on-warnings . ../opencode",
"test": "npm run build && node --test dist/tests/*/*.test.js",
"start:controller": "node dist/application/controller/main.js",
"start:executor": "node dist/application/execution/main.js"
},
"engines": {
"node": ">=24.13"
},
"dependencies": {
"@opencode-ai/sdk": "1.17.18"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@types/node": "24.10.1",
"typescript": "5.9.3"
}
}