Files
hive/frontend/node_modules/better-opn/package.json
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

64 lines
1.3 KiB
JSON

{
"name": "better-opn",
"version": "3.0.2",
"description": "A better opn. Reuse the same tab on Chrome for 👨‍💻.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ExiaSR/better-opn"
},
"author": "Michael Lin <linzichunzf@hotmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"opn",
"open",
"opener",
"launch",
"browser"
],
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist",
"openChrome.applescript",
"package.json",
"README.md",
"yarn.lock"
],
"xo": {
"_nodeVersion": "falling back to --node-version cli argument since this is not working",
"nodeVersion": ">=10.0.0",
"space": 2,
"prettier": true,
"envs": [
"node"
]
},
"ava": {
"files": [
"tests/**/*",
"!test/host-only.js"
]
},
"scripts": {
"build": "babel src -d dist",
"_lint": "--node-version is a work around since we use v8 as target in babel anyway",
"lint": "xo --fix --node-version \">=10.0.0\"",
"test": "ava"
},
"dependencies": {
"open": "^8.0.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"ava": "^3.6.0",
"lodash.countby": "^4.6.0",
"puppeteer-core": "^8.0.0",
"xo": "^0.28.3"
}
}