package.json 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@vue/runtime-dom",
  3. "version": "3.0.0-beta.5",
  4. "description": "@vue/runtime-dom",
  5. "main": "index.js",
  6. "module": "dist/runtime-dom.esm-bundler.js",
  7. "types": "dist/runtime-dom.d.ts",
  8. "unpkg": "dist/runtime-dom.global.js",
  9. "files": [
  10. "index.js",
  11. "dist"
  12. ],
  13. "sideEffects": false,
  14. "buildOptions": {
  15. "name": "VueRuntimeDOM",
  16. "formats": [
  17. "esm-bundler",
  18. "esm-browser",
  19. "cjs",
  20. "global"
  21. ],
  22. "dts": [
  23. "jsx.d.ts"
  24. ]
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/vuejs/vue-next.git"
  29. },
  30. "keywords": [
  31. "vue"
  32. ],
  33. "author": "Evan You",
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/vuejs/vue-next/issues"
  37. },
  38. "homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-dom#readme",
  39. "dependencies": {
  40. "@vue/shared": "3.0.0-beta.5",
  41. "@vue/runtime-core": "3.0.0-beta.5",
  42. "csstype": "^2.6.8"
  43. }
  44. }