package.json 734 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@emotion/hash",
  3. "version": "0.9.2",
  4. "description": "A MurmurHash2 implementation",
  5. "main": "dist/emotion-hash.cjs.js",
  6. "module": "dist/emotion-hash.esm.js",
  7. "types": "dist/emotion-hash.cjs.d.ts",
  8. "license": "MIT",
  9. "repository": "https://github.com/emotion-js/emotion/tree/main/packages/hash",
  10. "files": [
  11. "src",
  12. "dist"
  13. ],
  14. "scripts": {
  15. "test:typescript": "dtslint types"
  16. },
  17. "devDependencies": {
  18. "@definitelytyped/dtslint": "0.0.112",
  19. "typescript": "^5.4.5"
  20. },
  21. "exports": {
  22. ".": {
  23. "module": "./dist/emotion-hash.esm.js",
  24. "import": "./dist/emotion-hash.cjs.mjs",
  25. "default": "./dist/emotion-hash.cjs.js"
  26. },
  27. "./package.json": "./package.json"
  28. }
  29. }