Files
anthonyrawlins e89f2f4b7b Add comprehensive development roadmap via GitHub Issues
Created 10 detailed GitHub issues covering:
- Project activation and management UI (#1-2)
- Worker node coordination and visualization (#3-4)
- Automated GitHub repository scanning (#5)
- Intelligent model-to-issue matching (#6)
- Multi-model task execution system (#7)
- N8N workflow integration (#8)
- Hive-Bzzz P2P bridge (#9)
- Peer assistance protocol (#10)

Each issue includes detailed specifications, acceptance criteria,
technical implementation notes, and dependency mapping.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-12 19:41:01 +10:00

53 lines
1.4 KiB
JSON

{
"name": "react-docgen",
"version": "8.0.0",
"description": "A library to extract information from React components for documentation generation.",
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-docgen.git",
"directory": "packages/react-docgen"
},
"type": "module",
"browser": {
"./dist/importer/fsImporter.js": "./dist/importer/ignoreImporter.js",
"./src/importer/fsImporter.ts": "./src/importer/ignoreImporter.ts",
"./dist/importer/makeFsImporter.js": "./dist/importer/makeIgnoreImporter.js",
"./src/importer/makeFsImporter.ts": "./src/importer/makeIgnoreImporter.ts"
},
"files": [
"dist"
],
"engines": {
"node": "^20.9.0 || >=22"
},
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"keywords": [
"react",
"documentation",
"documentation-generation"
],
"author": {
"name": "Felix Kling (http://github.com/fkling)"
},
"contributors": [
"Daniel Tschinder (http://github.com/danez)"
],
"license": "MIT",
"dependencies": {
"@babel/core": "^7.18.9",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9",
"@types/babel__core": "^7.18.0",
"@types/babel__traverse": "^7.18.0",
"@types/doctrine": "^0.0.9",
"@types/resolve": "^1.20.2",
"doctrine": "^3.0.0",
"resolve": "^1.22.1",
"strip-indent": "^4.0.0"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"test": "vitest run"
}
}