first commit

This commit is contained in:
2025-11-14 15:25:23 +08:00
commit 911a99bd3d
39 changed files with 6658 additions and 0 deletions

43
package.json Normal file
View File

@@ -0,0 +1,43 @@
{
"name": "demos",
"type": "module",
"version": "0.0.0",
"private": true,
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"pinia": "^3.0.3",
"sass": "^1.93.3",
"three": "^0.181.0",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.18.11",
"@types/three": "^0.181.0",
"@unocss/eslint-plugin": "^66.5.4",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.37.0",
"jiti": "^2.6.1",
"npm-run-all2": "^8.0.4",
"typescript": "~5.9.0",
"unocss": "^66.5.4",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-vue-devtools": "^8.0.3",
"vue-tsc": "^3.1.1"
}
}