package.json 569 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "@pipeline/cli",
  3. "version": "0.0.1",
  4. "private": true,
  5. "type": "module",
  6. "bin": {
  7. "pipeline": "./dist/index.js"
  8. },
  9. "scripts": {
  10. "build": "tsc -b",
  11. "typecheck": "tsc --noEmit"
  12. },
  13. "dependencies": {
  14. "@pipeline/core": "workspace:*",
  15. "@pipeline/shared": "workspace:*",
  16. "@pipeline/tts": "workspace:*",
  17. "@pipeline/templates": "workspace:*",
  18. "commander": "^13.0.0",
  19. "chalk": "^5.4.0",
  20. "ora": "^8.2.0",
  21. "listr2": "^8.2.0",
  22. "yaml": "^2.7.0"
  23. },
  24. "devDependencies": {
  25. "@types/node": "^22.0.0"
  26. }
  27. }