package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "@hoppscotch/ui",
  3. "private": true,
  4. "version": "0.0.1",
  5. "type": "module",
  6. "scripts": {
  7. "watch": "vite build --watch",
  8. "build": "vite build",
  9. "story:dev": "histoire dev",
  10. "story:build": "histoire build",
  11. "story:preview": "histoire preview",
  12. "do-build-prod": "pnpm run build",
  13. "postinstall": "pnpm run build",
  14. "do-build-ui": "pnpm run story:build"
  15. },
  16. "peerDependencies": {
  17. "vue": "^3.2.25"
  18. },
  19. "dependencies": {
  20. "@boringer-avatars/vue3": "^0.2.1",
  21. "@fontsource-variable/inter": "^5.0.5",
  22. "@fontsource-variable/material-symbols-rounded": "^5.0.5",
  23. "@fontsource-variable/roboto-mono": "^5.0.6",
  24. "@hoppscotch/vue-toasted": "^0.1.0",
  25. "@vitejs/plugin-legacy": "^2.3.0",
  26. "@vueuse/core": "^8.7.5",
  27. "fp-ts": "^2.12.1",
  28. "lodash-es": "^4.17.21",
  29. "path": "^0.12.7",
  30. "vite-plugin-eslint": "^1.8.1",
  31. "vuedraggable-es": "^4.1.1"
  32. },
  33. "devDependencies": {
  34. "@esbuild-plugins/node-globals-polyfill": "^0.1.1",
  35. "@esbuild-plugins/node-modules-polyfill": "^0.1.4",
  36. "@histoire/plugin-vue": "^0.12.4",
  37. "@iconify-json/lucide": "^1.1.109",
  38. "@intlify/vite-plugin-vue-i18n": "^6.0.1",
  39. "@rushstack/eslint-patch": "^1.1.4",
  40. "@types/lodash-es": "^4.17.6",
  41. "@types/splitpanes": "^2.2.1",
  42. "@typescript-eslint/eslint-plugin": "^5.19.0",
  43. "@typescript-eslint/parser": "^5.19.0",
  44. "@vitejs/plugin-vue": "^3.1.0",
  45. "@vue/compiler-sfc": "^3.2.39",
  46. "@vue/eslint-config-typescript": "^11.0.1",
  47. "@vue/runtime-core": "^3.2.39",
  48. "autoprefixer": "^10.4.14",
  49. "cross-env": "^7.0.3",
  50. "eslint": "^8.24.0",
  51. "eslint-plugin-prettier": "^4.2.1",
  52. "eslint-plugin-vue": "^9.5.1",
  53. "histoire": "^0.12.4",
  54. "npm-run-all": "^4.1.5",
  55. "postcss": "^8.4.23",
  56. "prettier": "^2.8.4",
  57. "prettier-plugin-tailwindcss": "^0.5.6",
  58. "rollup-plugin-polyfill-node": "^0.10.1",
  59. "sass": "^1.53.0",
  60. "tailwindcss": "^3.3.2",
  61. "typescript": "^4.5.4",
  62. "unplugin-icons": "^0.16.1",
  63. "unplugin-fonts": "^1.0.3",
  64. "unplugin-vue-components": "^0.21.0",
  65. "vite": "^3.2.3",
  66. "vite-plugin-checker": "^0.5.1",
  67. "vite-plugin-dts": "3.2.0",
  68. "vite-plugin-fonts": "^0.6.0",
  69. "vite-plugin-html-config": "^1.0.10",
  70. "vite-plugin-inspect": "^0.7.4",
  71. "vite-plugin-pages": "^0.26.0",
  72. "vite-plugin-pages-sitemap": "^1.4.5",
  73. "vite-plugin-pwa": "^0.13.1",
  74. "vite-plugin-vue-layouts": "^0.7.0",
  75. "vue": "^3.2.25",
  76. "vue-loader": "^16.8.3",
  77. "vue-router": "^4.0.16",
  78. "vue-tsc": "^0.38.2"
  79. },
  80. "files": [
  81. "dist"
  82. ],
  83. "module": "./dist/index.js",
  84. "main": "./dist/index.js",
  85. "exports": {
  86. ".": "./dist/index.js",
  87. "./style.css": "./dist/style.css",
  88. "./themes.scss": "./dist/themes.scss",
  89. "./postcss.config": {
  90. "import": "./postcss.config.cjs",
  91. "require": "./postcss.config.cjs"
  92. },
  93. "./ui-preset": {
  94. "import": "./dist/ui-preset.js",
  95. "require": "./dist/ui-preset.js"
  96. },
  97. "./helpers/treeAdapter.ts": "./src/helpers/treeAdapter.ts"
  98. },
  99. "types": "./dist/index.d.ts"
  100. }