forked from themesberg/flowbite-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.47 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
{
"name": "flowbite-vue",
"version": "0.1.5",
"repository": {
"type": "git",
"url": "git+https://github.com/themesberg/flowbite-vue.git"
},
"author": "themesberg",
"license": "MIT",
"files": [
"dist",
"src"
],
"main": "./dist/flowbite-vue.umd.js",
"module": "./dist/flowbite-vue.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/flowbite-vue.mjs",
"require": "./dist/flowbite-vue.umd.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
},
"./*": "./dist/*"
},
"scripts": {
"dev": "vitepress dev docs",
"start": "vitepress serve docs --port $PORT",
"build": "vitepress build docs && cp -r ./docs/assets/* ./docs/.vitepress/dist/assets/",
"build:package": "vite build",
"build:types": "vue-tsc --declaration --emitDeclarationOnly && tsc-alias -p tsconfig.json",
"build:production": "npm run build:package && npm run build:types",
"lint": "eslint . --ext .js,.ts,.vue --ignore-path .gitignore",
"lint-fix": "eslint . --fix --ext .js,.ts,.vue --ignore-path .gitignore",
"clear": "rm -fr ./dist && rm -fr ./dist_types",
"format": "prettier . --write",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "vue-tsc --noEmit",
"prepublishOnly": "npm run build:production"
},
"peerDependencies": {
"tailwindcss": "^3",
"vue": "^3.4.x"
},
"devDependencies": {
"@rushstack/eslint-patch": "1.10.3",
"@types/lodash-es": "4.17.12",
"@types/node": "20.12.12",
"@vitejs/plugin-vue": "5.0.4",
"@vitest/coverage-v8": "1.6.0",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.5.1",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-vue": "9.26.0",
"eslint-plugin-vue-scoped-css": "2.8.0",
"jsdom": "24.1.0",
"postcss": "8.4.38",
"postcss-prefix-selector": "1.16.1",
"prettier": "3.2.5",
"tsc-alias": "1.8.10",
"typescript": "5.4.5",
"vite": "5.2.12",
"vitepress": "1.2.2",
"vitest": "1.6.0",
"vue-tsc": "2.0.19"
},
"dependencies": {
"@vueuse/core": "10.10.0",
"classnames": "2.5.1",
"floating-vue": "^5.2.2",
"flowbite": "2.3.0",
"lodash-es": "4.17.21",
"nanoid": "5.0.7",
"tailwind-merge": "2.3.0",
"tailwindcss": "^3"
},
"engines": {
"node": ">=18.x",
"npm": ">=10.x"
}
}