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

33 lines
761 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-12-31 14:01:59 +00:00
"version": "1.0.219",
2025-07-31 05:00:29 +00:00
"type": "module",
2025-08-02 22:50:19 +00:00
"scripts": {
2025-10-14 22:30:32 +00:00
"typecheck": "tsgo --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",
"./v2": "./src/v2/index.ts",
"./v2/client": "./src/v2/client.ts",
"./v2/server": "./src/v2/server.ts"
2025-07-31 05:00:29 +00:00
},
"files": [
"dist"
],
"devDependencies": {
"@hey-api/openapi-ts": "0.88.1",
2025-10-10 21:56:33 +00:00
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
2025-10-14 22:30:32 +00:00
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
2025-08-22 22:30:25 +00:00
},
2025-10-10 00:55:25 +00:00
"dependencies": {},
2025-09-27 08:10:56 +00:00
"publishConfig": {
"directory": "dist"
2025-07-31 05:00:29 +00:00
}
2025-12-31 15:24:05 +00:00
}