Created automated script to convert markdown issue documentation into GitHub Issues with proper labels and formatting. ## What's Added ### Script: scripts/import-github-issues.js - Parses docs/issues/*.md files - Creates GitHub Issues via Octokit API - Adds proper labels (P0/P1/P2, bug, feature, etc.) - Rate-limited to respect GitHub API limits - Comprehensive error handling ### Documentation: scripts/README.md - Complete setup instructions - Troubleshooting guide - Customization options - Advanced usage examples ### Dependencies - Added @octokit/rest for GitHub API access ## How to Use 1. Get GitHub Personal Access Token: - Visit https://github.com/settings/tokens - Create token with 'repo' scope 2. Set token: ```bash export GITHUB_TOKEN=your_token_here ``` 3. Run script: ```bash node scripts/import-github-issues.js ``` ## What Gets Created The script will create 25 GitHub Issues: - 5 P0 (critical) issues - 5 P1 (medium priority) issues - 15 P2 (nice-to-have) issues Each with: - Proper title with priority prefix - Full markdown body - Appropriate labels - File references intact ## Labels Created - P0 (red) - Critical priority - P1 (orange) - Medium priority - P2 (yellow) - Low priority - bug, feature, enhancement, tech-debt, security See scripts/README.md for full documentation.
134 lines
4.4 KiB
JSON
134 lines
4.4 KiB
JSON
{
|
|
"name": "fusion-starter",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"description": "AeThex Terminal — desktop sidecar with overlay, watcher, and local sentinel.",
|
|
"author": "AeThex",
|
|
"main": "electron/main.js",
|
|
"pkg": {
|
|
"assets": [
|
|
"dist/spa/*",
|
|
"dist/desktop/*"
|
|
],
|
|
"scripts": [
|
|
"dist/server/**/*.js"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "npm run build:api && npm run build:client && npm run build:server",
|
|
"build:client": "vite build",
|
|
"build:api": "node build-api.js",
|
|
"build:server": "vite build --config vite.config.server.ts",
|
|
"start": "node dist/server/production.mjs",
|
|
"test": "vitest --run",
|
|
"format.fix": "prettier --write .",
|
|
"typecheck": "tsc",
|
|
"desktop:dev": "concurrently -k \"npm:desktop:renderer\" \"npm:desktop:electron\"",
|
|
"desktop:renderer": "vite --config vite.desktop.config.ts --host --port 5173",
|
|
"desktop:electron": "cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .",
|
|
"desktop:build": "npm run build:desktop && electron-builder -c electron-builder.yml",
|
|
"build:desktop": "vite build --config vite.desktop.config.ts"
|
|
},
|
|
"dependencies": {
|
|
"@builder.io/react": "^8.2.8",
|
|
"@discord/embedded-app-sdk": "^2.4.0",
|
|
"@google/genai": "^1.31.0",
|
|
"@octokit/rest": "^22.0.1",
|
|
"@supabase/supabase-js": "^2.53.0",
|
|
"@vercel/analytics": "^1.5.0",
|
|
"adm-zip": "^0.5.16",
|
|
"chokidar": "^3.6.0",
|
|
"dompurify": "^3.3.1",
|
|
"dotenv": "^17.2.0",
|
|
"ethers": "^6.13.0",
|
|
"express": "^4.18.2",
|
|
"nodemailer": "^7.0.10",
|
|
"png-to-ico": "^3.0.1",
|
|
"sharp": "^0.34.5",
|
|
"stripe": "^15.12.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@hookform/resolvers": "^3.9.0",
|
|
"@radix-ui/react-accordion": "^1.2.0",
|
|
"@radix-ui/react-alert-dialog": "^1.1.1",
|
|
"@radix-ui/react-aspect-ratio": "^1.1.0",
|
|
"@radix-ui/react-avatar": "^1.1.0",
|
|
"@radix-ui/react-checkbox": "^1.1.1",
|
|
"@radix-ui/react-collapsible": "^1.1.0",
|
|
"@radix-ui/react-context-menu": "^2.2.1",
|
|
"@radix-ui/react-dialog": "^1.1.2",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
|
"@radix-ui/react-hover-card": "^1.1.1",
|
|
"@radix-ui/react-label": "^2.1.0",
|
|
"@radix-ui/react-menubar": "^1.1.1",
|
|
"@radix-ui/react-navigation-menu": "^1.2.0",
|
|
"@radix-ui/react-popover": "^1.1.1",
|
|
"@radix-ui/react-progress": "^1.1.0",
|
|
"@radix-ui/react-radio-group": "^1.2.0",
|
|
"@radix-ui/react-scroll-area": "^1.1.0",
|
|
"@radix-ui/react-select": "^2.1.1",
|
|
"@radix-ui/react-separator": "^1.1.0",
|
|
"@radix-ui/react-slider": "^1.2.0",
|
|
"@radix-ui/react-slot": "^1.1.0",
|
|
"@radix-ui/react-switch": "^1.1.0",
|
|
"@radix-ui/react-tabs": "^1.1.0",
|
|
"@radix-ui/react-toast": "^1.2.1",
|
|
"@radix-ui/react-toggle": "^1.1.0",
|
|
"@radix-ui/react-toggle-group": "^1.1.0",
|
|
"@radix-ui/react-tooltip": "^1.1.4",
|
|
"@react-three/drei": "^10.7.7",
|
|
"@react-three/fiber": "^8.18.0",
|
|
"@swc/core": "^1.11.24",
|
|
"@tailwindcss/typography": "^0.5.15",
|
|
"@tanstack/react-query": "^5.56.2",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/dompurify": "^3.0.5",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^22.5.5",
|
|
"@types/nodemailer": "^7.0.3",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/three": "^0.176.0",
|
|
"@vercel/node": "^3.2.15",
|
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
"autoprefixer": "^10.4.21",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.0.0",
|
|
"concurrently": "^9.1.2",
|
|
"cors": "^2.8.5",
|
|
"cross-env": "^7.0.3",
|
|
"date-fns": "^3.6.0",
|
|
"electron": "^32.2.0",
|
|
"electron-builder": "^25.1.8",
|
|
"embla-carousel-react": "^8.3.0",
|
|
"framer-motion": "^12.23.25",
|
|
"globals": "^15.9.0",
|
|
"input-otp": "^1.2.4",
|
|
"lucide-react": "^0.462.0",
|
|
"next-themes": "^0.3.0",
|
|
"postcss": "^8.5.6",
|
|
"prettier": "^3.5.3",
|
|
"react": "^18.3.1",
|
|
"react-day-picker": "^8.10.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-hook-form": "^7.53.0",
|
|
"react-resizable-panels": "^2.1.3",
|
|
"react-router-dom": "^6.26.2",
|
|
"recharts": "^2.12.7",
|
|
"serverless-http": "^3.2.0",
|
|
"sonner": "^1.5.0",
|
|
"tailwind-merge": "^2.5.2",
|
|
"tailwindcss": "^3.4.11",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"three": "^0.176.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.5.3",
|
|
"vaul": "^0.9.3",
|
|
"vite": "^6.2.2",
|
|
"vitest": "^3.1.4"
|
|
}
|
|
}
|