Spaces:
Paused
Paused
| { | |
| "name": "@paperclipai/plugin-kitchen-sink-example", | |
| "version": "0.1.0", | |
| "description": "Reference plugin that demonstrates the full Paperclip plugin surface area in one package", | |
| "type": "module", | |
| "private": true, | |
| "exports": { | |
| ".": "./src/index.ts" | |
| }, | |
| "paperclipPlugin": { | |
| "manifest": "./dist/manifest.js", | |
| "worker": "./dist/worker.js", | |
| "ui": "./dist/ui/" | |
| }, | |
| "scripts": { | |
| "prebuild": "node ../../../../scripts/ensure-plugin-build-deps.mjs", | |
| "build": "tsc && node ./scripts/build-ui.mjs", | |
| "clean": "rm -rf dist", | |
| "typecheck": "pnpm --filter @paperclipai/plugin-sdk build && tsc --noEmit" | |
| }, | |
| "dependencies": { | |
| "@paperclipai/plugin-sdk": "workspace:*", | |
| "@paperclipai/shared": "workspace:*" | |
| }, | |
| "devDependencies": { | |
| "esbuild": "^0.27.3", | |
| "@types/node": "^24.6.0", | |
| "@types/react": "^19.0.8", | |
| "@types/react-dom": "^19.0.3", | |
| "react": "^19.0.0", | |
| "react-dom": "^19.0.0", | |
| "typescript": "^5.7.3" | |
| }, | |
| "peerDependencies": { | |
| "react": ">=18" | |
| } | |
| } | |