| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "@controlstack/oac-cli",
- "version": "1.1.0",
- "description": "OAC CLI — install, manage, and update AI agents and context files",
- "private": true,
- "type": "module",
- "bin": {
- "oac": "./dist/index.js"
- },
- "main": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "files": ["dist"],
- "scripts": {
- "build": "rm -rf dist && bun build src/index.ts --outdir dist --target node --splitting",
- "build:watch": "bun build src/index.ts --outdir dist --target node --splitting --watch",
- "dev": "bun run src/index.ts",
- "test": "bun test",
- "test:watch": "bun test --watch",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@controlstack/compatibility-layer": "workspace:*",
- "commander": "12.1.0",
- "chalk": "5.6.2",
- "ora": "8.2.0",
- "semver": "7.7.3",
- "zod": "3.25.76"
- },
- "devDependencies": {
- "@types/bun": "latest",
- "@types/node": "^20.0.0",
- "@types/semver": "^7.5.0",
- "typescript": "^5.4.0"
- },
- "engines": {
- "node": ">=20.0.0"
- }
- }
|