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

42 lines
1.0 KiB
JSON

{
"name": "@shikijs/engine-oniguruma",
"type": "module",
"version": "3.7.0",
"description": "Engine for Shiki using Oniguruma RegExp engine in WebAssembly",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"homepage": "https://github.com/shikijs/shiki#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shikijs/shiki.git",
"directory": "packages/engine-oniguruma"
},
"bugs": "https://github.com/shikijs/shiki/issues",
"keywords": [
"shiki",
"shiki-engine",
"oniguruma"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./wasm-inlined": "./dist/wasm-inlined.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"dependencies": {
"@shikijs/vscode-textmate": "^10.0.2",
"@shikijs/types": "3.7.0"
},
"devDependencies": {
"vscode-oniguruma": "1.7.0"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -cw"
}
}