openpetswithchatandmcp/packages/opencode/package.json
2026-06-11 21:47:36 +02:00

44 lines
1 KiB
JSON

{
"name": "@open-pets/opencode",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alvinunreal/openpets.git",
"directory": "packages/opencode"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/plugin.d.ts",
"default": "./dist/plugin.js"
}
},
"scripts": {
"test": "node dist/check-opencode-foundation.js && node dist/check-opencode-plugin.js",
"check": "pnpm typecheck && pnpm build && pnpm test",
"typecheck": "tsc --noEmit",
"build": "tsc"
},
"dependencies": {
"@open-pets/agent-events": "workspace:*",
"@open-pets/client": "workspace:*",
"jsonc-parser": "^3.3.1"
},
"devDependencies": {
"@types/node": "^25.6.2",
"typescript": "^6.0.3"
}
}