Skip to content

Commit f71e233

Browse files
committed
Update dependencies, add Bun scripts and simplify package description
1 parent 371902c commit f71e233

File tree

4 files changed

+29
-10
lines changed

4 files changed

+29
-10
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,5 @@ dist
138138
.yarn/build-state.yml
139139
.yarn/install-state.gz
140140
.pnp.*
141-
.DS_Store
141+
.DS_Store
142+
bun.lock

examples/mcp/package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "mcp-example",
3+
"version": "1.0.0",
4+
"type": "module",
5+
"main": "agent.js",
6+
"scripts": {
7+
"start:agent": "node agent.js",
8+
"start:client": "node client.js",
9+
"start:server:echo": "ts-node server/echo.ts",
10+
"start:server:weather": "ts-node server/weather.ts"
11+
},
12+
"dependencies": {
13+
"express": "^4.18.2",
14+
"zod": "^3.22.4",
15+
"@modelcontextprotocol/sdk": "latest"
16+
},
17+
"devDependencies": {
18+
"ts-node": "^10.9.2",
19+
"typescript": "^5.4.5"
20+
}
21+
}

package.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
{
22
"name": "@riligar/agents-sdk",
33
"version": "1.1.0",
4-
"description": "The RiLiGar Agents SDK is a robust JavaScript library designed to streamline the development of AI-powered applications through seamless integration with various Large Language Model (LLM) providers such as OpenAI, Google, and Anthropic, as well as Meta's Llama and ModelContext.",
4+
"description": "RiLiGar Agents SDK is a JavaScript library that simplifies integration with LLMs like OpenAI, Google Gemini, Anthropic, Meta Llama, and ModelContext to build intelligent agents.",
55
"main": "index.js",
66
"type": "module",
77
"scripts": {
88
"build": "rollup -c",
99
"build:watch": "rollup -c -w",
10-
"release": "semantic-release"
10+
"bun:install": "bun install",
11+
"bun:update": "bun update",
12+
"bun:delete": "rm -rf node_modules bun.lockb .next"
1113
},
1214
"keywords": [
1315
"openai",
@@ -31,11 +33,7 @@
3133
"license": "Apache-2.0",
3234
"dependencies": {
3335
"@modelcontextprotocol/sdk": "^1.10.1",
34-
"express": "^5.1.0",
35-
"expressjs": "^1.0.1",
36-
"openai": "^4.28.0",
37-
"sse.js": "^2.6.0",
38-
"zod": "^3.24.3"
36+
"openai": "^4.28.0"
3937
},
4038
"config": {
4139
"commitizen": {
@@ -61,4 +59,4 @@
6159
"rollup-plugin-postcss": "^4.0.2",
6260
"semantic-release": "^24.2.3"
6361
}
64-
}
62+
}

src/agent.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
const OpenAIProvider = require('./providers/OpenAIProvider');
22

3-
43
const { MCPManager } = require('./mcp');
54
const Tool = require('./tool');
65

0 commit comments

Comments
 (0)