First commit

This commit is contained in:
2026-08-10 04:29:24 -06:00
commit 26851fa750
71 changed files with 8333 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
{
"name": "@omaresquivel/design-system",
"version": "0.1.0",
"private": false,
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./style.css": "./dist/design-system.css"
},
"sideEffects": [
"**/*.css"
],
"publishConfig": {
"registry": "https://gitea.autobyte.dev/api/packages/omararch48/npm/"
},
"scripts": {
"dev": "vite --config vite.playground.config.ts",
"typecheck": "vue-tsc --noEmit -p tsconfig.app.json",
"test": "vitest run",
"test:watch": "vitest",
"build:lib": "vite build",
"build:playground": "vite build --config vite.playground.config.ts",
"build": "npm run build:lib && npm run build:playground",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run typecheck && npm test && npm run build:lib"
},
"peerDependencies": {
"vue": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.10",
"@vue/test-utils": "^2.4.11",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"type-fest": "^2.19.0",
"typescript": "^6.0.0",
"vite": "^8.2.1",
"vite-plugin-dts": "^5.0.3",
"vitest": "^4.1.10",
"vue": "^3.5.41",
"vue-tsc": "^3.3.9"
}
}