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

36 lines
909 B
JSON
Raw Permalink Normal View History

2025-07-31 05:00:29 +00:00
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
2026-06-25 12:09:26 +00:00
"version": "1.17.11",
2025-07-31 05:00:29 +00:00
"type": "module",
"license": "MIT",
2025-08-02 22:50:19 +00:00
"scripts": {
2025-10-14 22:30:32 +00:00
"typecheck": "tsgo --noEmit",
"build": "bun ./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",
2026-03-05 14:38:43 +00:00
"./v2": "./src/v2/index.ts",
"./v2/client": "./src/v2/client.ts",
"./v2/gen/client": "./src/v2/gen/client/index.ts",
"./v2/server": "./src/v2/server.ts",
"./v2/types": "./src/v2/gen/types.gen.ts"
2025-07-31 05:00:29 +00:00
},
"files": [
"dist"
],
"devDependencies": {
2026-01-25 04:00:40 +00:00
"@hey-api/openapi-ts": "0.90.10",
2025-10-10 21:56:33 +00:00
"@tsconfig/node22": "catalog:",
"@types/cross-spawn": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"typescript": "catalog:"
2025-08-22 22:30:25 +00:00
},
"dependencies": {
"cross-spawn": "catalog:"
}
2026-01-29 07:10:34 +00:00
}