Files
2026-08-12 03:44:07 -06:00

57 lines
1.5 KiB
JSON

{
"name": "@omaresquivel/design-system",
"version": "0.2.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",
"test:coverage": "vitest run --coverage",
"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 .",
"check": "npm run typecheck && npm test && npm run format:check && npm run build",
"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"
}
}