package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "webpack-plugin-vuetify",
  3. "version": "3.0.3",
  4. "description": "A Webpack plugin for treeshaking Vuetify components and more",
  5. "main": "./dist/index.cjs",
  6. "module": "./dist/index.mjs",
  7. "types": "./dist/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./dist/index.mjs",
  11. "require": "./dist/index.cjs"
  12. },
  13. "./scriptLoader": {
  14. "import": "./dist/scriptLoader.mjs",
  15. "require": "./dist/scriptLoader.cjs"
  16. }
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/vuetifyjs/vuetify-loader.git"
  21. },
  22. "scripts": {
  23. "build": "unbuild",
  24. "dev": "unbuild --stub"
  25. },
  26. "author": "Kael Watts-Deuchar",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/vuetifyjs/vuetify-loader/issues"
  30. },
  31. "homepage": "https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/webpack-plugin",
  32. "dependencies": {
  33. "@vuetify/loader-shared": "^2.0.3",
  34. "decache": "^4.6.0",
  35. "file-loader": "^6.2.0",
  36. "find-cache-dir": "^5.0.0",
  37. "loader-utils": "^2.0.0",
  38. "mkdirp": "^1.0.4",
  39. "null-loader": "^4.0.1",
  40. "upath": "^2.0.1"
  41. },
  42. "peerDependencies": {
  43. "@vue/compiler-sfc": "^3.2.6",
  44. "vue": "^3.2.6",
  45. "vuetify": "^3.0.0",
  46. "webpack": "^5.0.0"
  47. },
  48. "optionalPeerDependencies": {
  49. "gm": "^1.23.0",
  50. "pug": "^2.0.0",
  51. "sharp": "^0.21.0"
  52. },
  53. "engines": {
  54. "node": "^18.0.0 || >=20.0.0"
  55. },
  56. "files": [
  57. "dist/"
  58. ],
  59. "publishConfig": {
  60. "access": "public"
  61. },
  62. "gitHead": "4a40d39312cbb8f90c46d194737d1d0b549fff49"
  63. }