package.json 895 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "vue",
  3. "version": "3.0.0-alpha.0",
  4. "description": "vue",
  5. "main": "index.js",
  6. "module": "dist/vue.esm-bundler.js",
  7. "files": [
  8. "index.js",
  9. "dist"
  10. ],
  11. "types": "dist/vue.d.ts",
  12. "unpkg": "dist/vue.global.js",
  13. "buildOptions": {
  14. "name": "Vue",
  15. "formats": [
  16. "esm-bundler",
  17. "cjs",
  18. "global",
  19. "esm"
  20. ]
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/vuejs/vue.git"
  25. },
  26. "keywords": [
  27. "vue"
  28. ],
  29. "author": "Evan You",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/vuejs/vue/issues"
  33. },
  34. "homepage": "https://github.com/vuejs/vue/tree/dev/packages/vue#readme",
  35. "dependencies": {
  36. "@vue/compiler-dom": "3.0.0-alpha.0",
  37. "@vue/runtime-dom": "3.0.0-alpha.0"
  38. },
  39. "devDependencies": {
  40. "lodash": "^4.17.15",
  41. "marked": "^0.7.0",
  42. "todomvc-app-css": "^2.3.0"
  43. }
  44. }