package.json 1.1 KB

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