task: implement sdk runner

This commit is contained in:
YeonGyu-Kim
2026-03-16 14:43:47 +09:00
parent 8c4fa47e5e
commit 96f4b3b56c
20 changed files with 1350 additions and 137 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"name": "@oh-my-openagent/sdk",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rm -rf dist && bun build ./src/index.ts --outdir dist --target bun --format esm && cp ./src/*.d.ts ./dist/",
"test": "bun test",
"typecheck": "tsc -p tsconfig.json --noEmit"
}
}