Initial commit

This commit is contained in:
2026-04-18 20:09:16 +10:00
commit eace5d0f35
11 changed files with 1670 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "@paarrot/plugin-manager",
"version": "1.0.0",
"description": "Framework-agnostic plugin system for Paarrot applications.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"devDependencies": {
"typescript": "^5.4.0",
"rimraf": "^5.0.0"
}
}