0
0

package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "vue-demi",
  3. "version": "0.13.11",
  4. "engines": {
  5. "node": ">=12"
  6. },
  7. "repository": "https://github.com/antfu/vue-demi.git",
  8. "funding": "https://github.com/sponsors/antfu",
  9. "license": "MIT",
  10. "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  11. "main": "lib/index.cjs",
  12. "jsdelivr": "lib/index.iife.js",
  13. "unpkg": "lib/index.iife.js",
  14. "module": "lib/index.mjs",
  15. "types": "lib/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "require": "./lib/index.cjs",
  19. "import": "./lib/index.mjs",
  20. "browser": "./lib/index.mjs",
  21. "types": "./lib/index.d.ts"
  22. },
  23. "./*": "./*"
  24. },
  25. "bin": {
  26. "vue-demi-fix": "bin/vue-demi-fix.js",
  27. "vue-demi-switch": "bin/vue-demi-switch.js"
  28. },
  29. "files": [
  30. "lib",
  31. "bin",
  32. "scripts"
  33. ],
  34. "scripts": {
  35. "postinstall": "node ./scripts/postinstall.js",
  36. "release": "npx bumpp --tag --commit --push && npm publish"
  37. },
  38. "peerDependencies": {
  39. "@vue/composition-api": "^1.0.0-rc.1",
  40. "vue": "^3.0.0-0 || ^2.6.0"
  41. },
  42. "peerDependenciesMeta": {
  43. "@vue/composition-api": {
  44. "optional": true
  45. }
  46. }
  47. }