package.json 3.0 KB

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