update branch

This commit is contained in:
qwen.ai[bot]
2026-04-25 13:11:26 +00:00
committed by Falck
parent 83c3ccb86b
commit 64c8713945
26 changed files with 1417 additions and 82 deletions

View File

@@ -0,0 +1,30 @@
{
"name": "@FutureOSS/nodejs-adapter",
"version": "1.0.0",
"description": "Pure Node.js runtime adapter service. Provides execution context for other plugins to run Node.js/npm commands in their own ./pkg directories.",
"author": "FutureOSS Team",
"license": "MIT",
"type": "adapter",
"main": "main.py",
"enabled": true,
"priority": 10,
"runtime": {
"language": "python",
"entry_point": "main.py",
"requirements": []
},
"capabilities": [
"nodejs_execution",
"npm_management",
"context_switching",
"dependency_isolation"
],
"services": {
"provides": ["nodejs-adapter"],
"consumes": []
},
"config": {
"node_path": null,
"npm_path": null
}
}