You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

2 months ago
  1. {
  2. "name": "vue-demi",
  3. "version": "0.14.8",
  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. "types": "./lib/index.d.ts",
  19. "require": "./lib/index.cjs",
  20. "import": "./lib/index.mjs",
  21. "browser": "./lib/index.mjs"
  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 -e \"try{require('./scripts/postinstall.js')}catch(e){}\"",
  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. }