Files
ci/package.json
T
Jon Chery a82926a22e fix(P01): quick wins — remove dead refs, unused imports, fix postinstall, version bump
---ci---
project: ci
phase: 1
milestone: v0.5
status: complete
decisions:
  - id: D-020
    decision: Phase 1 Quick Wins complete
    rationale: All 5 FIX requirements (FIX-01 through FIX-05) verified and passing
    confidence: 0.95
    alternatives: []
requirements:
  covered: [FIX-01, FIX-02, FIX-03, FIX-04, FIX-05]
---/ci---

Phase 1 (Quick Wins) summary:
- A1/FIX-01: Marked .planning/ refs as (legacy)/(removed) in docs
- A2/FIX-02: Removed unused execSync import from ollama-base.ts
- A3/FIX-03: Replaced postinstall with explicit install-opencode, removed scripts/ from files
- A4/FIX-04: Verified opencode.json is clean (no learnship entry)
- A5/FIX-05: Version bump to 0.5.0
2026-05-29 16:39:26 +00:00

42 lines
1008 B
JSON

{
"name": "@continuous-intelligence/ci",
"version": "0.5.0",
"description": "Fully autonomous AI-driven software engineering harness - Continuous Intelligence",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ci": "./dist/cli/index.js"
},
"files": [
"dist/",
"opencode/",
"templates/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "jest",
"prepublishOnly": "npm run build",
"install-opencode": "node scripts/postinstall.js"
},
"keywords": ["ci", "autonomous", "ai", "software-engineering", "agent", "multi-project"],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"zod": "^3.23.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"@types/node": "^20.14.0",
"ts-node": "^10.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.0",
"@types/jest": "^29.5.0"
}
}