This repository has been archived on 2026-08-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pi-web/plugins/actions/package.json
T

49 lines
976 B
JSON

{
"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"
}
}