Skip to content

Commit a3b1055

Browse files
committed
chore: update '@ts-dspy/core' dependency version in gemini and openai packages
### Changes - Updated '@ts-dspy/core' dependency version from '^0.2.5' to '^0.3.0' in both gemini and openai package.json files.
1 parent e7bf02b commit a3b1055

File tree

2 files changed

+50
-50
lines changed

2 files changed

+50
-50
lines changed

packages/gemini/package.json

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
11
{
2-
"name": "@ts-dspy/gemini",
3-
"version": "0.3.0",
4-
"description": "Gemini API integration for TS-DSPy - enables type-safe LLM interactions with Gemini models for TypeScript",
5-
"main": "dist/index.js",
6-
"module": "dist/index.esm.js",
7-
"types": "dist/index.d.ts",
8-
"files": [
9-
"dist",
10-
"README.md"
11-
],
12-
"scripts": {
13-
"build": "npm run clean && npm run build:js && npm run build:types",
14-
"build:js": "rollup -c",
15-
"build:types": "mkdir -p temp && tsc src/index.ts src/gemini-lm.ts --declaration --outDir temp --skipLibCheck && cp temp/*.d.ts dist/ && rm -rf temp",
16-
"dev": "tsc --watch",
17-
"test": "jest",
18-
"lint": "eslint src --ext .ts",
19-
"clean": "rm -rf dist"
20-
},
21-
"dependencies": {
22-
"@google/generative-ai": "^0.2.1",
23-
"@ts-dspy/core": "^0.2.5"
24-
},
25-
"devDependencies": {
26-
"@rollup/plugin-node-resolve": "^15.0.0",
27-
"@rollup/plugin-typescript": "^11.0.0",
28-
"@types/jest": "^29.5.0",
29-
"jest": "^29.5.0",
30-
"rollup": "^3.0.0",
31-
"ts-jest": "^29.0.0",
32-
"typescript": "^5.0.0"
33-
},
34-
"keywords": [
35-
"ai",
36-
"gemini",
37-
"llm",
38-
"dspy",
39-
"typescript"
40-
],
41-
"author": "Arnav Dadarya",
42-
"license": "MIT",
43-
"publishConfig": {
44-
"access": "public"
45-
},
46-
"repository": {
47-
"type": "git",
48-
"url": "https://github.com/ardada2468/LLMTypeSafe.git"
49-
}
50-
}
2+
"name": "@ts-dspy/gemini",
3+
"version": "0.3.0",
4+
"description": "Gemini API integration for TS-DSPy - enables type-safe LLM interactions with Gemini models for TypeScript",
5+
"main": "dist/index.js",
6+
"module": "dist/index.esm.js",
7+
"types": "dist/index.d.ts",
8+
"files": [
9+
"dist",
10+
"README.md"
11+
],
12+
"scripts": {
13+
"build": "npm run clean && npm run build:js && npm run build:types",
14+
"build:js": "rollup -c",
15+
"build:types": "mkdir -p temp && tsc src/index.ts src/gemini-lm.ts --declaration --outDir temp --skipLibCheck && cp temp/*.d.ts dist/ && rm -rf temp",
16+
"dev": "tsc --watch",
17+
"test": "jest",
18+
"lint": "eslint src --ext .ts",
19+
"clean": "rm -rf dist"
20+
},
21+
"dependencies": {
22+
"@google/generative-ai": "^0.2.1",
23+
"@ts-dspy/core": "^3.0.0"
24+
},
25+
"devDependencies": {
26+
"@rollup/plugin-node-resolve": "^15.0.0",
27+
"@rollup/plugin-typescript": "^11.0.0",
28+
"@types/jest": "^29.5.0",
29+
"jest": "^29.5.0",
30+
"rollup": "^3.0.0",
31+
"ts-jest": "^29.0.0",
32+
"typescript": "^5.0.0"
33+
},
34+
"keywords": [
35+
"ai",
36+
"gemini",
37+
"llm",
38+
"dspy",
39+
"typescript"
40+
],
41+
"author": "Arnav Dadarya",
42+
"license": "MIT",
43+
"publishConfig": {
44+
"access": "public"
45+
},
46+
"repository": {
47+
"type": "git",
48+
"url": "https://github.com/ardada2468/LLMTypeSafe.git"
49+
}
50+
}

packages/openai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"clean": "rm -rf dist"
2020
},
2121
"dependencies": {
22-
"@ts-dspy/core": "^0.2.5"
22+
"@ts-dspy/core": "^0.3.0"
2323
},
2424
"devDependencies": {
2525
"@rollup/plugin-node-resolve": "^15.0.0",

0 commit comments

Comments
 (0)