package.json 906 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@vueuse/metadata",
  3. "version": "9.13.0",
  4. "description": "Metadata for VueUse functions",
  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/tree/main/packages/metadata#readme",
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/vueuse/vueuse.git",
  12. "directory": "packages/metadata"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/vueuse/vueuse/issues"
  16. },
  17. "keywords": [
  18. "vue",
  19. "vue-use"
  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. "types": "./index.d.ts",
  33. "files": [
  34. "index.*"
  35. ],
  36. "scripts": {
  37. "update": "esno scripts/update.ts"
  38. }
  39. }