Skip to content

Commit 0938bfb

Browse files
committed
Fix version issues
1 parent dc26555 commit 0938bfb

File tree

8 files changed

+2437
-1424
lines changed

8 files changed

+2437
-1424
lines changed

biome.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
33
"files": {
4-
"ignore": ["node_modules/**", "dist/**"]
4+
"includes": ["**", "!**/node_modules", "!**/dist"]
55
},
66
"linter": {
77
"enabled": true,
@@ -12,7 +12,5 @@
1212
"formatter": {
1313
"enabled": true
1414
},
15-
"organizeImports": {
16-
"enabled": true
17-
}
15+
"assist": { "actions": { "source": { "organizeImports": "on" } } }
1816
}

package.json

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,21 @@
1616
"precommit": "lint-staged"
1717
},
1818
"lint-staged": {
19-
"*.{ts,js,json}": ["biome check --write"]
19+
"*.{ts,js,json}": [
20+
"biome check --write"
21+
]
2022
},
2123
"repository": {
2224
"type": "git",
2325
"url": "git+https://github.com/IQAICOM/sophia-agent.git"
2426
},
25-
"keywords": ["ai", "agent", "mcp", "adk-ts", "IQAI"],
27+
"keywords": [
28+
"ai",
29+
"agent",
30+
"mcp",
31+
"adk-ts",
32+
"IQAI"
33+
],
2634
"author": "IQAI",
2735
"license": "MIT",
2836
"bugs": {
@@ -31,25 +39,29 @@
3139
"homepage": "https://github.com/IQAICOM/sophia-agent#readme",
3240
"pnpm": {
3341
"overrides": {
34-
"chalk": "^4.1.2"
42+
"chalk": "^4.1.2",
43+
"fastmcp": "^3.25.4"
3544
}
3645
},
3746
"dependencies": {
38-
"@iqai/adk": "^0.1.20",
39-
"@openrouter/ai-sdk-provider": "^0.7.3",
40-
"dotenv": "^16.4.5",
41-
"node-cron": "^4.1.0",
42-
"zod": "^3.23.8"
47+
"@iqai/adk": "^0.5.7",
48+
"@openrouter/ai-sdk-provider": "^1.5.4",
49+
"dotenv": "^17.2.3",
50+
"node-cron": "^4.2.1",
51+
"zod": "^4.2.1"
4352
},
4453
"devDependencies": {
45-
"@biomejs/biome": "^1.9.4",
46-
"@types/node": "^22.15.29",
54+
"@biomejs/biome": "^2.3.10",
55+
"@iqai/mcp-atp": "0.0.8",
56+
"@iqai/mcp-iqwiki": "^0.0.4",
57+
"@iqai/mcp-telegram": "0.1.4",
58+
"@types/node": "^25.0.3",
4759
"@types/node-cron": "^3.0.11",
48-
"husky": "^9.0.0",
49-
"lint-staged": "^16.1.0",
50-
"rimraf": "^6.0.1",
60+
"husky": "^9.1.7",
61+
"lint-staged": "^16.2.7",
62+
"rimraf": "^6.1.2",
5163
"tsc-alias": "^1.8.16",
52-
"tsx": "^4.19.2",
53-
"typescript": "^5.7.2"
64+
"tsx": "^4.21.0",
65+
"typescript": "^5.9.3"
5466
}
5567
}

0 commit comments

Comments
 (0)