package.json 521 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "@pipeline/shared",
  3. "version": "0.0.1",
  4. "private": true,
  5. "type": "module",
  6. "main": "./dist/index.js",
  7. "types": "./dist/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./dist/index.js",
  11. "types": "./dist/index.d.ts"
  12. },
  13. "./node": {
  14. "import": "./dist/node.js",
  15. "types": "./dist/node.d.ts"
  16. }
  17. },
  18. "scripts": {
  19. "build": "tsc -b",
  20. "typecheck": "tsc --noEmit"
  21. },
  22. "dependencies": {
  23. "zod": "^3.24.0",
  24. "openai": "^4.90.0",
  25. "yaml": "^2.7.0"
  26. }
  27. }