mirror of
https://github.com/aaronjmars/opendia.git
synced 2025-12-29 16:16:00 +00:00
- Add Firefox extension support with Manifest V2 - Update all version numbers to 1.0.6 - Build Chrome and Firefox extension packages - Clean up extension directory structure - Update README with Firefox installation instructions - Update server messages to mention Chrome/Firefox support - Add .gitignore for extension directory - Create release packages for both browsers 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "opendia",
|
|
"version": "1.0.6",
|
|
"description": "🎯 OpenDia - The open alternative to Dia. Connect your browser to AI models with anti-detection bypass for Twitter/X, LinkedIn, Facebook",
|
|
"main": "server.js",
|
|
"bin": {
|
|
"opendia": "./server.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"tunnel": "node server.js --tunnel",
|
|
"sse-only": "node server.js --sse-only",
|
|
"tunnel-sse": "node server.js --tunnel --sse-only",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"browser",
|
|
"automation",
|
|
"ai",
|
|
"claude",
|
|
"chrome",
|
|
"extension",
|
|
"twitter",
|
|
"linkedin",
|
|
"facebook",
|
|
"anti-detection"
|
|
],
|
|
"author": "OpenDia Team",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/aaronjmars/opendia.git"
|
|
},
|
|
"homepage": "https://github.com/aaronjmars/opendia",
|
|
"bugs": {
|
|
"url": "https://github.com/aaronjmars/opendia/issues"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.21.2",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"files": [
|
|
"server.js",
|
|
"README.md"
|
|
]
|
|
}
|