feat(plugins): add actions plugin package

This commit is contained in:
Federico Jaramillo Martinez
2026-05-21 09:31:33 +02:00
parent d693aa06d7
commit fb7903f3cb
20 changed files with 1347 additions and 9 deletions
+48
View File
@@ -0,0 +1,48 @@
{
"name": "@jmfederico/pi-web-actions",
"version": "0.1.0",
"description": "Configurable workspace actions plugin for Pi Web.",
"license": "MIT",
"type": "module",
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "tsc -w -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --config ../../vitest.config.ts",
"prepack": "npm run build"
},
"keywords": [
"pi-package",
"pi-web",
"pi-web-plugin",
"actions",
"workspace"
],
"peerDependencies": {
"@jmfederico/pi-web": ">=1.202605.10 <2"
},
"peerDependenciesMeta": {
"@jmfederico/pi-web": {
"optional": true
}
},
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"piWeb": {
"plugins": [
{
"id": "actions",
"module": "dist/pi-web-plugin.js"
}
]
},
"publishConfig": {
"access": "public"
}
}