package.json 703 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@pipeline/core",
  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. },
  14. "scripts": {
  15. "build": "tsc -b",
  16. "typecheck": "tsc --noEmit"
  17. },
  18. "dependencies": {
  19. "@pipeline/shared": "workspace:*",
  20. "@pipeline/tts": "workspace:*",
  21. "@pipeline/templates": "workspace:*",
  22. "@remotion/renderer": "^4.0.0",
  23. "@remotion/bundler": "^4.0.0",
  24. "ali-oss": "^6.21.0",
  25. "zod": "^3.24.0",
  26. "tmp-promise": "^3.0.3",
  27. "yaml": "^2.7.0"
  28. },
  29. "devDependencies": {
  30. "@types/node": "^22.0.0"
  31. }
  32. }