package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@vue/compiler-sfc",
  3. "version": "3.0.0-alpha.0",
  4. "description": "@vue/compiler-sfc",
  5. "main": "dist/compiler-sfc.cjs.js",
  6. "files": [
  7. "dist"
  8. ],
  9. "types": "dist/compiler-sfc.d.ts",
  10. "buildOptions": {
  11. "prod": false,
  12. "formats": [
  13. "cjs"
  14. ]
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/vuejs/vue.git"
  19. },
  20. "keywords": [
  21. "vue"
  22. ],
  23. "author": "Evan You",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/vuejs/vue/issues"
  27. },
  28. "homepage": "https://github.com/vuejs/vue/tree/dev/packages/compiler-sfc#readme",
  29. "dependencies": {
  30. "@vue/compiler-core": "3.0.0-alpha.0",
  31. "@vue/compiler-dom": "3.0.0-alpha.0",
  32. "consolidate": "^0.15.1",
  33. "hash-sum": "^2.0.0",
  34. "lru-cache": "^5.1.1",
  35. "merge-source-map": "^1.1.0",
  36. "postcss": "^7.0.21",
  37. "postcss-selector-parser": "^6.0.2",
  38. "source-map": "^0.7.3"
  39. },
  40. "devDependencies": {
  41. "@types/consolidate": "^0.14.0",
  42. "@types/lru-cache": "^5.1.0",
  43. "pug": "^2.0.4"
  44. }
  45. }