Migrated from design-system-swarm with fresh git history.
Old project history preserved in /home/overbits/apps/design-system-swarm
Core components:
- MCP Server (Python FastAPI with mcp 1.23.1)
- Claude Plugin (agents, commands, skills, strategies, hooks, core)
- DSS Backend (dss-mvp1 - token translation, Figma sync)
- Admin UI (Node.js/React)
- Server (Node.js/Express)
- Storybook integration (dss-mvp1/.storybook)
Self-contained configuration:
- All paths relative or use DSS_BASE_PATH=/home/overbits/dss
- PYTHONPATH configured for dss-mvp1 and dss-claude-plugin
- .env file with all configuration
- Claude plugin uses ${CLAUDE_PLUGIN_ROOT} for portability
Migration completed: $(date)
🤖 Clean migration with full functionality preserved
35 lines
778 B
JSON
Executable File
35 lines
778 B
JSON
Executable File
{
|
|
"name": "dss-worker",
|
|
"version": "0.1.0",
|
|
"description": "Design System Server (DSS) - Worker Node",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"dss": "./dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"cli": "tsx src/cli.ts"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/static": "^7.0.4",
|
|
"cors": "^2.8.5",
|
|
"fastify": "^4.24.3",
|
|
"figma-api": "^1.5.0",
|
|
"fs-extra": "^11.2.0",
|
|
"odiff-bin": "^3.0.1",
|
|
"playwright": "^1.40.0",
|
|
"style-dictionary": "^3.9.1",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/node": "^20.19.25",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.3.2"
|
|
}
|
|
}
|