-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
122 lines (122 loc) · 3.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@hoppscotch/ui",
"version": "0.2.2",
"license": "MIT",
"description": "Hoppscotch UI",
"author": "Hoppscotch ([email protected])",
"homepage": "https://github.com/hoppscotch/ui",
"bugs": {
"url": "https://github.com/hoppscotch/ui/issues"
},
"keywords": [
"ui",
"vue ui",
"vue",
"hoppscotch ui",
"hoppscotch",
"hoppscotch.io",
"hoppscotch api"
],
"scripts": {
"dev": "histoire dev --port 6006",
"watch": "vite build --watch",
"build": "vite build && npm run build:css",
"build:css": "sass src/assets/scss/themes.scss dist/themes.css --no-source-map",
"story:build": "histoire build",
"story:preview": "histoire preview",
"prepublish": "pnpm run build"
},
"peerDependencies": {
"vue": "^3.2.25"
},
"dependencies": {
"@boringer-avatars/vue3": "^0.2.1",
"@fontsource-variable/inter": "^5.0.5",
"@fontsource-variable/material-symbols-rounded": "^5.0.5",
"@fontsource-variable/roboto-mono": "^5.0.6",
"@hoppscotch/vue-sonner": "^1.2.3",
"@hoppscotch/vue-toasted": "^0.1.0",
"@vitejs/plugin-legacy": "^2.3.0",
"@vueuse/core": "^8.7.5",
"fp-ts": "^2.12.1",
"lodash-es": "^4.17.21",
"path": "^0.12.7",
"vite-plugin-eslint": "^1.8.1",
"vue-promise-modals": "^0.1.0",
"vuedraggable-es": "^4.1.1"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@histoire/plugin-vue": "^0.17.14",
"@iconify-json/lucide": "^1.1.109",
"@intlify/vite-plugin-vue-i18n": "^6.0.1",
"@rushstack/eslint-patch": "^1.1.4",
"@types/lodash-es": "^4.17.6",
"@types/splitpanes": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/compiler-sfc": "^3.2.39",
"@vue/eslint-config-typescript": "^11.0.1",
"@vue/runtime-core": "^3.2.39",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.5.1",
"histoire": "^0.17.14",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"rollup-plugin-polyfill-node": "^0.10.1",
"sass": "^1.77.0",
"tailwindcss": "^3.3.2",
"typescript": "^4.5.4",
"unplugin-fonts": "^1.0.3",
"unplugin-icons": "^0.16.1",
"unplugin-vue-components": "^0.21.0",
"vite": "^3.2.3",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-dts": "3.2.0",
"vite-plugin-fonts": "^0.6.0",
"vite-plugin-html-config": "^1.0.10",
"vite-plugin-inspect": "^0.7.4",
"vite-plugin-pages": "^0.26.0",
"vite-plugin-pages-sitemap": "^1.4.5",
"vite-plugin-pwa": "^0.13.1",
"vite-plugin-vue-layouts": "^0.7.0",
"vue": "^3.2.25",
"vue-loader": "^16.8.3",
"vue-router": "^4.0.16",
"vue-tsc": "^0.38.2"
},
"engines": {
"node": ">=16"
},
"type": "module",
"files": [
"dist",
"ui-preset.d.ts",
"helpers.d.ts"
],
"module": "./dist/index.js",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./style.css": "./dist/style.css",
"./themes.css": "./dist/themes.css",
"./ui-preset": {
"import": "./dist/ui-preset.js",
"require": "./dist/ui-preset.js",
"types": "./dist/ui-preset.d.ts"
},
"./helpers": {
"import": "./dist/src/helpers",
"require": "./dist/src/helpers",
"types": "./dist/src/helpers/index.d.ts"
}
},
"types": "./dist/index.d.ts"
}