mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-17 19:20:39 +09:00
30 lines
805 B
JSON
30 lines
805 B
JSON
|
|
{
|
||
|
|
"name": "@paperclipai/plugin-fake-sandbox",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"description": "First-party deterministic fake sandbox provider plugin for Paperclip environments",
|
||
|
|
"type": "module",
|
||
|
|
"private": true,
|
||
|
|
"exports": {
|
||
|
|
".": "./src/index.ts"
|
||
|
|
},
|
||
|
|
"paperclipPlugin": {
|
||
|
|
"manifest": "./dist/manifest.js",
|
||
|
|
"worker": "./dist/worker.js"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"prebuild": "node ../../../scripts/ensure-plugin-build-deps.mjs",
|
||
|
|
"build": "tsc",
|
||
|
|
"clean": "rm -rf dist",
|
||
|
|
"typecheck": "pnpm --filter @paperclipai/plugin-sdk build && tsc --noEmit",
|
||
|
|
"test": "vitest run --config vitest.config.ts"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@paperclipai/plugin-sdk": "workspace:*"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^24.6.0",
|
||
|
|
"typescript": "^5.7.3",
|
||
|
|
"vitest": "^3.2.4"
|
||
|
|
}
|
||
|
|
}
|