Files
oh-my-openagent/packages/sdk/package.json
2026-03-16 15:06:33 +09:00

24 lines
528 B
JSON

{
"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"
}
}