-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 2.07 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
{
"name": "vue-fomantic-ui",
"version": "0.29.0",
"description": "Fomantic-UI component library for Vue.js 3.0",
"license": "MIT",
"bugs": "https://github.com/nightswinger/vue-fomantic-ui/issues",
"repository": {
"type": "git",
"url": "https://github.com/nightswinger/vue-fomantic-ui"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-fomantic-ui.umd.cjs",
"module": "./dist/vue-fomantic-ui.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-fomantic-ui.js",
"require": "./dist/vue-fomantic-ui.umd.cjs"
}
},
"keywords": [
"semantic-ui",
"fomantic-ui",
"vue"
],
"scripts": {
"dev": "vite",
"dev:storybook": "storybook dev",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"test": "vitest"
},
"dependencies": {
"@floating-ui/vue": "^1.0.6",
"@vueuse/core": "^10.9.0",
"clsx": "^2.1.1",
"motion": "^10.17.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@storybook/addon-actions": "^8.1.2",
"@storybook/addon-controls": "^8.1.2",
"@storybook/vue3-vite": "^8.1.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-vue": "^9.22.0",
"fomantic-ui-css": "^2.9.3",
"happy-dom": "^14.11.0",
"prettier": "^3.2.5",
"storybook": "^8.1.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"vue": "~3.4.21",
"vue-tsc": "^2.0.6"
},
"overrides": {
"@babel/helper-module-imports": "~7.22.15"
},
"pnpm": {
"overrides": {
"@babel/helper-module-imports": "~7.22.15"
}
},
"resolutions": {
"@babel/helper-module-imports": "~7.22.15"
}
}