Files
sim/packages/sdk/package.json
Waleed Latif eb5d01956e feat/codegen: added initial outline for sdk, added api keys table & view (#126)
* 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
2025-03-18 17:49:50 -07:00

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