package.json 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@vue/runtime-dom",
  3. "version": "3.0.0-rc.7",
  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. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/vuejs/vue-next.git"
  26. },
  27. "keywords": [
  28. "vue"
  29. ],
  30. "author": "Evan You",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/vuejs/vue-next/issues"
  34. },
  35. "homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-dom#readme",
  36. "dependencies": {
  37. "@vue/shared": "3.0.0-rc.7",
  38. "@vue/runtime-core": "3.0.0-rc.7",
  39. "csstype": "^2.6.8"
  40. }
  41. }