package.json 1017 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "motion-dom",
  3. "version": "12.7.3",
  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. "dependencies": {
  20. "motion-utils": "^12.7.2"
  21. },
  22. "scripts": {
  23. "clean": "rm -rf types dist lib",
  24. "build": "yarn clean && tsc -p . && rollup -c",
  25. "dev": "concurrently -c blue,red -n tsc,rollup --kill-others \"tsc --watch -p . --preserveWatchOutput\" \"rollup --config --watch --no-watch.clearScreen\"",
  26. "test": "jest --config jest.config.json --max-workers=2 motion-value.test"
  27. },
  28. "gitHead": "b9f31f14292536d6cedd465f38c4df7d71987eca"
  29. }