Archived
49 lines
976 B
JSON
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"
|
|
}
|
|
}
|