Spaces:
Paused
Paused
| { | |
| "name": "@paperclipai/adapter-opencode-local", | |
| "version": "0.3.1", | |
| "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/adapters/opencode-local" | |
| }, | |
| "type": "module", | |
| "exports": { | |
| ".": "./src/index.ts", | |
| "./server": "./src/server/index.ts", | |
| "./ui": "./src/ui/index.ts", | |
| "./cli": "./src/cli/index.ts" | |
| }, | |
| "publishConfig": { | |
| "access": "public", | |
| "exports": { | |
| ".": { | |
| "types": "./dist/index.d.ts", | |
| "import": "./dist/index.js" | |
| }, | |
| "./server": { | |
| "types": "./dist/server/index.d.ts", | |
| "import": "./dist/server/index.js" | |
| }, | |
| "./ui": { | |
| "types": "./dist/ui/index.d.ts", | |
| "import": "./dist/ui/index.js" | |
| }, | |
| "./cli": { | |
| "types": "./dist/cli/index.d.ts", | |
| "import": "./dist/cli/index.js" | |
| } | |
| }, | |
| "main": "./dist/index.js", | |
| "types": "./dist/index.d.ts" | |
| }, | |
| "files": [ | |
| "dist", | |
| "skills" | |
| ], | |
| "scripts": { | |
| "build": "tsc", | |
| "clean": "rm -rf dist", | |
| "typecheck": "tsc --noEmit" | |
| }, | |
| "dependencies": { | |
| "@paperclipai/adapter-utils": "workspace:*", | |
| "picocolors": "^1.1.1" | |
| }, | |
| "devDependencies": { | |
| "@types/node": "^24.6.0", | |
| "typescript": "^5.7.3" | |
| } | |
| } | |