package.json 1.1 KB

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