package.json 1007 B

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