opencode_offline/packages/sdk/js/package.json

29 lines
605 B
JSON
Raw Normal View History

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