cloudaxe-opencode/packages/sdk/js/package.json

30 lines
606 B
JSON
Raw Normal View History

2025-07-31 05:00:29 +00:00
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
2025-09-26 21:18:45 +00:00
"version": "0.12.1",
2025-07-31 05:00:29 +00:00
"type": "module",
2025-08-02 22:50:19 +00:00
"scripts": {
2025-09-19 09:28:46 +00:00
"typecheck": "tsc --noEmit",
2025-09-27 08:10:56 +00:00
"build": "./script/build.ts"
2025-08-02 22:50:19 +00:00
},
2025-07-31 05:00:29 +00:00
"exports": {
2025-09-27 08:10:56 +00:00
".": "./src/index.ts",
"./client": "./src/client.ts",
"./server": "./src/server.ts"
2025-07-31 05:00:29 +00:00
},
"files": [
"dist"
],
"devDependencies": {
"typescript": "catalog:",
"@hey-api/openapi-ts": "0.80.1",
"@tsconfig/node22": "catalog:"
2025-08-22 22:30:25 +00:00
},
"dependencies": {
2025-08-27 16:18:09 +00:00
"@hey-api/openapi-ts": "0.81.0"
2025-09-27 08:10:56 +00:00
},
"publishConfig": {
"directory": "dist"
2025-07-31 05:00:29 +00:00
}
}