mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
73 lines
2 KiB
JSON
73 lines
2 KiB
JSON
|
|
{
|
||
|
|
"name": "@paperclipai/plugin-workspace-diff",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"description": "First-party execution workspace Changes tab powered by plugin-local workspace metadata",
|
||
|
|
"license": "MIT",
|
||
|
|
"homepage": "https://github.com/paperclipai/paperclip",
|
||
|
|
"bugs": {
|
||
|
|
"url": "https://github.com/paperclipai/paperclip/issues"
|
||
|
|
},
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "https://github.com/paperclipai/paperclip",
|
||
|
|
"directory": "packages/plugins/plugin-workspace-diff"
|
||
|
|
},
|
||
|
|
"type": "module",
|
||
|
|
"exports": {
|
||
|
|
".": "./src/index.ts"
|
||
|
|
},
|
||
|
|
"publishConfig": {
|
||
|
|
"access": "public",
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"types": "./dist/index.d.ts",
|
||
|
|
"import": "./dist/index.js"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"main": "./dist/index.js",
|
||
|
|
"types": "./dist/index.d.ts"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"dist"
|
||
|
|
],
|
||
|
|
"paperclipPlugin": {
|
||
|
|
"manifest": "./dist/manifest.js",
|
||
|
|
"worker": "./dist/worker.js",
|
||
|
|
"ui": "./dist/ui/"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"paperclip",
|
||
|
|
"plugin",
|
||
|
|
"workspace",
|
||
|
|
"diff"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"postinstall": "node ../../../scripts/link-plugin-dev-sdk.mjs",
|
||
|
|
"prebuild": "pnpm --filter @paperclipai/plugin-sdk ensure-build-deps",
|
||
|
|
"build": "tsc && node ./scripts/build-ui.mjs",
|
||
|
|
"clean": "rm -rf dist",
|
||
|
|
"typecheck": "pnpm --filter @paperclipai/plugin-sdk ensure-build-deps && tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
|
||
|
|
"test": "vitest run",
|
||
|
|
"prepack": "rm -f package.dev.json && cp package.json package.dev.json && node ../../../scripts/generate-plugin-package-json.mjs",
|
||
|
|
"postpack": "if [ -f package.dev.json ]; then mv package.dev.json package.json; fi"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@paperclipai/plugin-sdk": "workspace:*",
|
||
|
|
"@pierre/diffs": "^1.1.22"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^24.6.0",
|
||
|
|
"@types/react": "^19.0.8",
|
||
|
|
"@types/react-dom": "^19.0.3",
|
||
|
|
"esbuild": "^0.27.3",
|
||
|
|
"react": "^19.0.0",
|
||
|
|
"react-dom": "^19.0.0",
|
||
|
|
"typescript": "^5.7.3",
|
||
|
|
"vitest": "^3.0.5"
|
||
|
|
},
|
||
|
|
"peerDependencies": {
|
||
|
|
"react": ">=18",
|
||
|
|
"react-dom": ">=18"
|
||
|
|
}
|
||
|
|
}
|