feat: sync full workspace including web modules, docs, and configurations to Gitea

Optimized the root .gitignore to exclude virtual environments, node modules,
and temp folders to ensure clean and lightweight version tracking.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
王冕
2026-06-09 18:12:25 +08:00
parent 351688006e
commit a27e3b8e43
1510 changed files with 162044 additions and 1517 deletions

45
axhub-make/package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "axhub-make",
"version": "0.3.3",
"private": true,
"description": "Axhub MakeAI 辅助生成原型工具)",
"type": "module",
"scripts": {
"dev": "vite",
"make": "axhub-make",
"start": "vite",
"build": "node scripts/scan-entries.js && node scripts/build-all.js && node scripts/generate-dist-html.js",
"preview": "vite preview",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"check-ready": "node scripts/check-app-ready.mjs",
"sync:skills": "node scripts/sync-third-party-skills.mjs"
},
"devDependencies": {
"@ant-design/icons": "^6.1.0",
"@axhub/make": "^0.5.3",
"@tailwindcss/vite": "^4.1.18",
"@vitejs/plugin-react": "^5.0.0",
"antd": "^6.1.2",
"echarts": "^6.0.0",
"execa": "^9.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^5.0.0",
"vitest": "^4.0.16",
"ws": "^8.18.3"
},
"dependencies": {
"archiver": "^7.0.1",
"extract-zip": "^2.0.1",
"formidable": "^3.5.4",
"iconv-lite": "^0.7.1",
"lowdb": "^7.0.1",
"lucide-react": "^0.562.0",
"papaparse": "^5.5.3",
"uuid": "^13.0.0"
}
}