package.json 938 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "motion-utils",
  3. "version": "12.7.2",
  4. "author": "Matt Perry",
  5. "license": "MIT",
  6. "repository": "https://github.com/motiondivision/motion",
  7. "main": "./dist/cjs/index.js",
  8. "types": "./dist/index.d.ts",
  9. "module": "./dist/es/index.mjs",
  10. "sideEffects": false,
  11. "exports": {
  12. ".": {
  13. "types": "./dist/index.d.ts",
  14. "require": "./dist/cjs/index.js",
  15. "import": "./dist/es/index.mjs",
  16. "default": "./dist/cjs/index.js"
  17. }
  18. },
  19. "scripts": {
  20. "clean": "rm -rf types dist lib",
  21. "build": "yarn clean && tsc -p . && rollup -c",
  22. "dev": "concurrently -c blue,red -n tsc,rollup --kill-others \"tsc --watch -p . --preserveWatchOutput\" \"rollup --config --watch --no-watch.clearScreen\"",
  23. "test": "jest --config jest.config.json --max-workers=2"
  24. },
  25. "gitHead": "522ba09f3bb144486ca901dfbb98f7aa883b1be2"
  26. }