package.json 888 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@vueuse/shared",
  3. "version": "9.13.0",
  4. "author": "Anthony Fu <https://github.com/antfu>",
  5. "license": "MIT",
  6. "funding": "https://github.com/sponsors/antfu",
  7. "homepage": "https://github.com/vueuse/vueuse/tree/main/packages/shared#readme",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/vueuse/vueuse.git",
  11. "directory": "packages/shared"
  12. },
  13. "bugs": {
  14. "url": "https://github.com/vueuse/vueuse/issues"
  15. },
  16. "keywords": [
  17. "vue",
  18. "vue-use",
  19. "utils"
  20. ],
  21. "sideEffects": false,
  22. "exports": {
  23. ".": {
  24. "types": "./index.d.ts",
  25. "require": "./index.cjs",
  26. "import": "./index.mjs"
  27. },
  28. "./*": "./*"
  29. },
  30. "main": "./index.cjs",
  31. "module": "./index.mjs",
  32. "unpkg": "./index.iife.min.js",
  33. "jsdelivr": "./index.iife.min.js",
  34. "types": "./index.d.ts",
  35. "dependencies": {
  36. "vue-demi": "*"
  37. }
  38. }