package.json 1.2 KB

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