-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.76 KB
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
{
"name": "impresso-ui-components",
"version": "0.1.0",
"type": "module",
"main": "dist/impresso-ui-components.umd.js",
"module": "dist/impresso-ui-components.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/impresso-ui-components.es.js",
"require": "./dist/impresso-ui-components.umd.js"
},
"./style.css": "./dist/impresso-ui-components.css",
"./impresso-style.css": "./src/assets/impresso-style.css",
"./legacy/bootstrap-impresso-theme.css": "./src/assets/legacy/bootstrap-impresso-theme.css",
"./legacy/bootstrap-vue.css": "./src/assets/legacy/bootstrap-vue.css",
"./components/": "./src/components/"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "vue-tsc -b && vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"vue": "^3.5.13",
"vue-i18n": "^11.1.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@intlify/unplugin-vue-i18n": "^6.0.8",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/experimental-addon-test": "^8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/vue3": "^8.6.12",
"@storybook/vue3-vite": "^8.6.12",
"@types/node": "^22.15.17",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/browser": "^3.1.3",
"@vitest/coverage-v8": "^3.1.3",
"@vue/tsconfig": "^0.7.0",
"husky": "^9.1.7",
"playwright": "^1.52.0",
"storybook": "^8.6.12",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.3",
"vue-tsc": "^2.2.8"
}
}