| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "@nextsystems/oac-cli",
- "version": "0.7.1",
- "description": "OAC CLI — install, manage, and update AI agents and context files",
- "type": "module",
- "private": true,
- "publishConfig": {
- "access": "public"
- },
- "main": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "files": ["dist"],
- "scripts": {
- "prepublishOnly": "npm run typecheck && npm run build",
- "build": "rm -rf dist && bun build src/index.ts --outdir dist --target bun --splitting",
- "build:watch": "bun build src/index.ts --outdir dist --target bun --splitting --watch",
- "dev": "bun run src/index.ts",
- "test": "bun test",
- "test:watch": "bun test --watch",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@openagents-control/compatibility-layer": "*",
- "commander": "^12.0.0",
- "chalk": "^5.3.0",
- "ora": "^8.0.0",
- "semver": "^7.6.0",
- "zod": "^3.23.0"
- },
- "devDependencies": {
- "@types/bun": "latest",
- "@types/node": "^20.0.0",
- "@types/semver": "^7.5.0",
- "typescript": "^5.4.0"
- },
- "engines": {
- "bun": ">=1.0.0"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/darrenhinde/OpenAgentsControl.git",
- "directory": "packages/cli"
- }
- }
|