Initial commit: Plugin Host system

This commit is contained in:
2026-04-17 01:48:22 +10:00
commit f423c50d68
5 changed files with 380 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "@pluginhost/core",
"version": "1.0.0",
"description": "Plugin host system for loading and managing plugins",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"keywords": ["plugin", "host", "extensibility"],
"author": "",
"license": "MIT",
"dependencies": {
"node-fetch": "^3.3.2"
}
}