mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-06 22:19:30 -07:00
79 lines
2.1 KiB
JSON
79 lines
2.1 KiB
JSON
{
|
|
"name": "vue-bits",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "npm run build:registry && run-p type-check \"build-only {@}\" --",
|
|
"build:registry": "jsrepo build",
|
|
"preview": "vite preview",
|
|
"build-only": "vite build",
|
|
"type-check": "vue-tsc --build",
|
|
"lint": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"new:component": "node scripts/generateComponent.js",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@primeuix/themes": "^1.2.1",
|
|
"@tresjs/cientos": "^4.3.1",
|
|
"@tresjs/core": "^4.3.6",
|
|
"@types/matter-js": "^0.19.8",
|
|
"@vueuse/core": "^14.1.0",
|
|
"@vueuse/motion": "^3.0.3",
|
|
"@wdns/vue-code-block": "^2.3.5",
|
|
"face-api.js": "^0.22.2",
|
|
"gl-matrix": "^3.4.3",
|
|
"gsap": "^3.13.0",
|
|
"lenis": "^1.3.8",
|
|
"lucide-vue-next": "^0.548.0",
|
|
"mathjs": "^14.6.0",
|
|
"matter-js": "^0.20.0",
|
|
"motion-v": "^1.10.2",
|
|
"ogl": "^1.0.11",
|
|
"postprocessing": "^6.37.6",
|
|
"primeicons": "^7.0.0",
|
|
"primevue": "^4.3.6",
|
|
"three": "^0.178.0",
|
|
"vue": "^3.5.17",
|
|
"vue-router": "^4.5.1",
|
|
"vue-sonner": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.1.11",
|
|
"@tsconfig/node22": "^22.0.2",
|
|
"@types/node": "^22.15.32",
|
|
"@types/three": "^0.178.0",
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"@vitejs/plugin-vue-jsx": "^5.0.0",
|
|
"@vue/eslint-config-typescript": "^14.5.1",
|
|
"@vue/tsconfig": "^0.7.0",
|
|
"autoprefixer": "^10.4.21",
|
|
"eslint": "^9.29.0",
|
|
"eslint-plugin-vue": "~10.2.0",
|
|
"husky": "^9.1.7",
|
|
"jiti": "^2.4.2",
|
|
"jsrepo": "^3.0.8",
|
|
"lint-staged": "^16.2.7",
|
|
"npm-run-all2": "^8.0.4",
|
|
"postcss": "^8.5.6",
|
|
"prettier": "^3.6.2",
|
|
"tailwindcss": "^4.1.11",
|
|
"typescript": "~5.8.0",
|
|
"vite": "^7.0.0",
|
|
"vite-plugin-vue-devtools": "^7.7.7",
|
|
"vue-tsc": "^2.2.10"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,ts,jsx,tsx,vue}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"src/**/*.{json,css,scss,md}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|