first commit

This commit is contained in:
René Preuß
2023-02-17 19:57:37 +01:00
commit 23eae8b651
37 changed files with 6370 additions and 0 deletions

45
package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "@bitinflow/ui",
"version": "0.0.2",
"description": "bitinflow UI Kit",
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"release2": "npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.2.0",
"@pinia/nuxt": "^0.4.3",
"pinia": "^2.0.23"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.1.1",
"@nuxt/module-builder": "^0.2.1",
"@nuxt/schema": "^3.2.0",
"@nuxt/test-utils": "^3.2.0",
"changelogen": "^0.4.1",
"eslint": "^8.34.0",
"nuxt": "^3.2.0",
"vitest": "^0.28.5"
}
}