WIP: initial setup and more

This commit is contained in:
Ralph Schuler
2022-06-08 22:50:36 +02:00
parent 7414dec745
commit 1a578b1a95
18 changed files with 919 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "flowbite-vue",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/themesberg/flowbite-vue.git",
"author": "Ralph Schuler <ralph@inhaus.ai>",
"license": "MIT",
"dependencies": {
"vue": "^3.2.37"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.2.37",
"@vue/tsconfig": "^0.1.3",
"rollup": "^2.75.6",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-vue": "^6.0.0",
"typescript": "^4.7.3"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "yarn build"
}
}