package.json 590 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "@pipeline/templates",
  3. "version": "0.0.1",
  4. "private": true,
  5. "type": "module",
  6. "main": "./dist/index.js",
  7. "types": "./dist/index.d.ts",
  8. "scripts": {
  9. "build": "tsc -b",
  10. "typecheck": "tsc --noEmit",
  11. "studio": "remotion studio"
  12. },
  13. "dependencies": {
  14. "@pipeline/shared": "workspace:*",
  15. "remotion": "^4.0.0",
  16. "react": "^19.0.0",
  17. "react-dom": "^19.0.0",
  18. "@remotion/cli": "^4.0.0",
  19. "@remotion/zod-types": "^4.0.0",
  20. "zod": "^3.24.0"
  21. },
  22. "devDependencies": {
  23. "@types/react": "^19.0.0",
  24. "@types/react-dom": "^19.0.0"
  25. }
  26. }