mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 07:27:57 -05:00
* feat[sdk]: added scaffolding for sdk pkg * feat[sdk]: simplified usage of tools for agent block * fix[sdk]: added api key directly into AgentOptions * fix[sdk]: simplified the conditional block by removing the code input since we don't need it * feat[sdk]: added account-level api keys & db table to manage them
31 lines
752 B
JSON
31 lines
752 B
JSON
{
|
|
"name": "@sim-studio/sdk",
|
|
"version": "0.1.0",
|
|
"description": "Official SDK for Sim Studio - build, deploy, and manage agentic workflows",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"prebuild": "ts-node src/scripts/sync-tools.ts",
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"lint": "eslint 'src/**/*.ts'",
|
|
"sync-tools": "ts-node src/scripts/sync-tools.ts"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.2"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^18.15.0",
|
|
"dotenv": "^16.4.7",
|
|
"eslint": "^8.36.0",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|