package.json 963 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@vue/compiler-sfc",
  3. "version": "3.0.0-alpha.1",
  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.1",
  31. "consolidate": "^0.15.1",
  32. "hash-sum": "^2.0.0",
  33. "lru-cache": "^5.1.1",
  34. "merge-source-map": "^1.1.0",
  35. "postcss": "^7.0.21",
  36. "postcss-selector-parser": "^6.0.2",
  37. "source-map": "^0.7.3"
  38. },
  39. "devDependencies": {
  40. "@types/lru-cache": "^5.1.0",
  41. "pug": "^2.0.4"
  42. }
  43. }