Initial commit: OneOS prototype workspace baseline.

Include weekly report and other prototype sources with project tooling config.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
王冕
2026-06-26 15:36:52 +08:00
commit 7ef8852919
1310 changed files with 282074 additions and 0 deletions

54
package.json Normal file
View File

@@ -0,0 +1,54 @@
{
"name": "@axhub/make-client",
"version": "0.1.4",
"private": true,
"description": "Official Axhub Make client runtime",
"type": "module",
"scripts": {
"vendor:sync": "node scripts/sync-vendor-if-present.mjs",
"dev": "node scripts/sync-vendor-if-present.mjs && vite",
"start": "npm run dev",
"metadata:sync": "node scripts/sync-project-metadata.mjs",
"build": "node scripts/sync-vendor-if-present.mjs && node scripts/scan-entries.js && node scripts/build-all.js",
"preview": "vite preview",
"typecheck": "node scripts/sync-vendor-if-present.mjs && tsc --noEmit -p tsconfig.typecheck.json",
"test": "npm run test:run",
"test:run": "node scripts/sync-vendor-if-present.mjs && vitest --run",
"test:coverage": "node scripts/sync-vendor-if-present.mjs && vitest --run --coverage",
"test:watch": "node scripts/sync-vendor-if-present.mjs && vitest",
"test:ui": "vitest --ui",
"coverage": "npm run test:coverage",
"check-ready": "node scripts/check-app-ready.mjs",
"capture:theme": "node scripts/capture-theme-homepage.mjs",
"font:subset:beginner-guide": "node scripts/subset-beginner-guide-fonts.mjs"
},
"devDependencies": {
"@floating-ui/react": "^0.27.17",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "4.0.16",
"@vitest/ui": "4.0.16",
"echarts": "^6.0.0",
"extract-zip": "^2.0.1",
"iconv-lite": "^0.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.97.3",
"subset-font": "^2.5.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^5.0.0",
"vitest": "^4.0.16",
"ws": "^8.18.3"
},
"dependencies": {
"@axhub/annotation": "1.x",
"lucide-react": "^0.562.0",
"motion": "^12.38.0",
"xlsx": "^0.18.5"
}
}