Files
plugin-manager/package.json
2026-04-18 21:04:28 +10:00

26 lines
563 B
JSON

{
"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": {
"prepare": "npm run build",
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"devDependencies": {
"@types/node": "^25.6.0",
"rimraf": "^5.0.0",
"typescript": "^5.4.0"
}
}