package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@controlstack/oac-cli",
  3. "version": "1.1.0",
  4. "description": "OAC CLI — install, manage, and update AI agents and context files",
  5. "private": true,
  6. "type": "module",
  7. "bin": {
  8. "oac": "./dist/index.js"
  9. },
  10. "main": "./dist/index.js",
  11. "types": "./dist/index.d.ts",
  12. "files": ["dist"],
  13. "scripts": {
  14. "build": "rm -rf dist && bun build src/index.ts --outdir dist --target node --splitting",
  15. "build:watch": "bun build src/index.ts --outdir dist --target node --splitting --watch",
  16. "dev": "bun run src/index.ts",
  17. "test": "bun test",
  18. "test:watch": "bun test --watch",
  19. "typecheck": "tsc --noEmit"
  20. },
  21. "dependencies": {
  22. "@controlstack/compatibility-layer": "workspace:*",
  23. "commander": "12.1.0",
  24. "chalk": "5.6.2",
  25. "ora": "8.2.0",
  26. "semver": "7.7.3",
  27. "zod": "3.25.76"
  28. },
  29. "devDependencies": {
  30. "@types/bun": "latest",
  31. "@types/node": "^20.0.0",
  32. "@types/semver": "^7.5.0",
  33. "typescript": "^5.4.0"
  34. },
  35. "engines": {
  36. "node": ">=20.0.0"
  37. }
  38. }