vue-bare
Version:
**Unstyled Vue components for frustration-free human interactions**
79 lines (78 loc) • 1.74 kB
JSON
{
"name": "vue-bare",
"version": "5.5.0",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"!/**/__test__",
"!*.test.*"
],
"sideEffects": false,
"engines": {
"node": ">=22"
},
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint .",
"smoke": "yarn build && yarn lint",
"test": "vitest run",
"test:watch": "vitest",
"-- PRE-COMMIT HOOKS --": "",
"localAfterInstall": "husky || true",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"packageManager": "yarn@4.12.0",
"peerDependencies": {
"vue": "3.x"
},
"dependencies": {
"e164num": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/vue": "^8.1.0",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.2",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.6.2",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"pinst": "^3.0.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.2.6",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.15",
"vue": "^3.5.25",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.1.5"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/ericvera/vue-bare"
},
"keywords": [
"vue",
"bare",
"unstyled",
"components"
],
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,mjs}": "eslint --cache",
"*": "prettier --ignore-unknown --write"
}
}