package.json 571 B

123456789101112131415161718192021222324252627
  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/text": "workspace:*",
  21. "@pipeline/audio": "workspace:*",
  22. "@pipeline/renderer": "workspace:*"
  23. },
  24. "devDependencies": {
  25. "@types/node": "^22.0.0"
  26. }
  27. }