-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.87 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
{
"name": "@deck9/ui",
"version": "0.15.5",
"description": "The UI components used in deck9 software applications.",
"author": "Philipp Reinking <[email protected]> (https://deck9.co)",
"scripts": {
"dev": "vite",
"check": "vue-tsc --noEmit",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"files": [
"dist",
"tailwind.config.js"
],
"main": "./dist/src/ui.umd.js",
"module": "./dist/src/ui.mjs",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/ui.mjs",
"require": "./dist/src/ui.umd.js"
}
},
"dependencies": {
"@deck9/tailwindcss-recursive-font-helper": "^1.0.1",
"@floating-ui/vue": "^1.0.4",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@headlessui/vue": "^1.7.11",
"@storybook/addon-styling-webpack": "^0.0.5",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.9",
"@types/web": "^0.0.122",
"@types/web-bluetooth": "^0.0.20",
"@vueuse/core": "^10.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.7",
"uuid": "^9.0.1",
"vue": "^3.3.9"
},
"devDependencies": {
"@storybook/addon-a11y": "^7.6.17",
"@storybook/addon-actions": "^7.6.17",
"@storybook/addon-docs": "^7.6.17",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-mdx-gfm": "^7.6.17",
"@storybook/vue3": "^7.6.17",
"@storybook/vue3-vite": "^7.6.17",
"@types/lodash": "^4.14.202",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@whitespace/storybook-addon-html": "^5.1.6",
"autoprefixer": "^10.4.13",
"eslint": "^8.54.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-vue": "^9.1.1",
"lodash": "^4.17.21",
"storybook": "^7.6.17",
"storybook-dark-mode": "^3.0.3",
"typescript": "^4.9.3",
"vite": "^5.0.2",
"vite-plugin-dts": "^3.6.3",
"vue-tsc": "^1.8.22"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"bugs": {
"url": "https://github.com/deck9/ui/issues"
},
"homepage": "https://github.com/Deck9/ui#readme",
"keywords": [
"ui",
"deck9"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Deck9/ui.git"
}
}