- Add shared plugin types and manager modules for splash screen, status bar, and network handling - Export plugin initialization from the dashboard entrypoint and configure Capacitor splash/status-bar defaults - Add unit tests covering plugin initialization and each manager's behavior across supported scenarios - Document the plugin manager architecture and add required Capacitor plugin dependencies
95 lines
2.9 KiB
JSON
95 lines
2.9 KiB
JSON
{
|
|
"name": "@fusion/dashboard",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./planning": {
|
|
"types": "./src/planning.ts",
|
|
"import": "./src/planning.ts"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "vite build && tsc",
|
|
"build:client": "vite build",
|
|
"cap:open:android": "cap open android",
|
|
"cap:open:ios": "cap open ios",
|
|
"cap:run:android": "cap run android",
|
|
"cap:run:ios": "cap run ios",
|
|
"cap:sync": "cap sync",
|
|
"dev": "pnpm build && pnpm typecheck && pnpm dev:serve",
|
|
"dev:serve": "vite dev",
|
|
"mobile:prepare": "pnpm build:client && pnpm cap:sync",
|
|
"postinstall": "chmod +x node_modules/.pnpm/node-pty*/node_modules/node-pty/prebuilds/darwin-*/spawn-helper node_modules/.pnpm/node-pty*/node_modules/node-pty/prebuilds/darwin-*/*.node 2>/dev/null || true",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.app.json"
|
|
},
|
|
"dependencies": {
|
|
"@capacitor/app": "^7.1.2",
|
|
"@capacitor/core": "^7.0.0",
|
|
"@capacitor/network": "^7.0.4",
|
|
"@capacitor/push-notifications": "^7.0.6",
|
|
"@capacitor/share": "^7.0.4",
|
|
"@capacitor/splash-screen": "^7.0.5",
|
|
"@capacitor/status-bar": "^7.0.6",
|
|
"@codemirror/basic-setup": "^0.20.0",
|
|
"@codemirror/lang-css": "^6.3.1",
|
|
"@codemirror/lang-javascript": "^6.2.3",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/lang-markdown": "^6.3.2",
|
|
"@codemirror/state": "^6.5.2",
|
|
"@codemirror/theme-one-dark": "^6.1.2",
|
|
"@codemirror/view": "^6.36.4",
|
|
"@fusion/core": "workspace:*",
|
|
"@fusion/engine": "workspace:*",
|
|
"@types/multer": "^2.1.0",
|
|
"@xterm/addon-fit": "^0.10.0",
|
|
"@xterm/addon-search": "^0.15.0",
|
|
"@xterm/addon-web-links": "^0.11.0",
|
|
"@xterm/addon-webgl": "^0.18.0",
|
|
"@xterm/xterm": "^5.5.0",
|
|
"archiver": "^7.0.1",
|
|
"express": "^5.1.0",
|
|
"ioredis": "^5.6.0",
|
|
"lucide-react": "^1.7.0",
|
|
"multer": "^2.1.1",
|
|
"node-pty": "^1.1.0-beta22",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-markdown": "^10.1.0",
|
|
"remark-gfm": "^4.0.1",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@capacitor/android": "^7.0.0",
|
|
"@capacitor/cli": "^7.0.0",
|
|
"@capacitor/ios": "^7.0.0",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.5.0",
|
|
"@types/archiver": "^7.0.0",
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@types/ws": "^8.5.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"@vitest/coverage-v8": "^3.1.0",
|
|
"jsdom": "^29.0.1",
|
|
"typescript": "^5.7.0",
|
|
"vite": "^6.0.0",
|
|
"vitest": "^3.1.0"
|
|
},
|
|
"private": true
|
|
}
|