ai-sdk-ollama 3.8.4 → 3.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +0 -6
  2. package/package.json +27 -27
package/CHANGELOG.md CHANGED
@@ -1,11 +1,5 @@
1
1
  # Changelog
2
2
 
3
- ## 3.8.4
4
-
5
- ### Patch Changes
6
-
7
- - 6f81c5d: Updated ai-sdk to v6.0.177
8
-
9
3
  ## 3.8.3
10
4
 
11
5
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-sdk-ollama",
3
- "version": "3.8.4",
3
+ "version": "3.8.6",
4
4
  "type": "module",
5
5
  "description": "Vercel AI SDK Provider for Ollama using official ollama-js library",
6
6
  "main": "./dist/index.js",
@@ -49,6 +49,25 @@
49
49
  "CHANGELOG.md",
50
50
  "LICENSE"
51
51
  ],
52
+ "scripts": {
53
+ "build": "tsup",
54
+ "ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test",
55
+ "dev": "tsup --watch",
56
+ "lint": "npx eslint src/**/*.ts",
57
+ "lint:fix": "npx eslint src/**/*.ts --fix",
58
+ "format": "prettier --write .",
59
+ "format:check": "prettier --check src/**/*.ts",
60
+ "type-check": "tsc --noEmit",
61
+ "test": "vitest run --config vitest.unit.config.ts",
62
+ "test:watch": "vitest --config vitest.unit.config.ts",
63
+ "test:integration": "vitest run --config vitest.integration.config.ts",
64
+ "test:integration:watch": "vitest --config vitest.integration.config.ts",
65
+ "test:all": "pnpm test && pnpm test:integration",
66
+ "check-format": "prettier --check ./src",
67
+ "check-exports": "attw --pack . --ignore-rules false-esm no-resolution",
68
+ "clean": "rimraf dist",
69
+ "quality": "pnpm type-check && pnpm test && pnpm lint && pnpm format:check && pnpm check-exports"
70
+ },
52
71
  "keywords": [
53
72
  "ai",
54
73
  "vercel-ai",
@@ -71,7 +90,7 @@
71
90
  "ollama": "^0.6.3"
72
91
  },
73
92
  "peerDependencies": {
74
- "ai": "^6.0.177"
93
+ "ai": "^6.0.154"
75
94
  },
76
95
  "devDependencies": {
77
96
  "@ai-sdk/test-server": "^1.0.5",
@@ -80,39 +99,20 @@
80
99
  "@total-typescript/ts-reset": "^0.6.1",
81
100
  "@total-typescript/tsconfig": "^1.0.4",
82
101
  "@types/eslint-config-prettier": "^6.11.3",
83
- "@types/node": "^25.7.0",
84
- "@typescript-eslint/eslint-plugin": "^8.59.3",
85
- "@typescript-eslint/parser": "^8.59.3",
102
+ "@types/node": "^25.6.2",
103
+ "@typescript-eslint/eslint-plugin": "^8.59.2",
104
+ "@typescript-eslint/parser": "^8.59.2",
86
105
  "eslint-config-prettier": "^10.1.8",
87
106
  "eslint-plugin-unicorn": "^64.0.0",
88
107
  "prettier": "^3.8.3",
89
108
  "rimraf": "^6.1.3",
90
109
  "tsup": "^8.5.1",
91
110
  "typescript": "^6.0.3",
92
- "typescript-eslint": "^8.59.3",
93
- "vitest": "^4.1.6",
111
+ "typescript-eslint": "^8.59.2",
112
+ "vitest": "^4.1.5",
94
113
  "zod": "^4.4.3"
95
114
  },
96
115
  "engines": {
97
116
  "node": ">=22"
98
- },
99
- "scripts": {
100
- "build": "tsup",
101
- "ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test",
102
- "dev": "tsup --watch",
103
- "lint": "npx eslint src/**/*.ts",
104
- "lint:fix": "npx eslint src/**/*.ts --fix",
105
- "format": "prettier --write .",
106
- "format:check": "prettier --check src/**/*.ts",
107
- "type-check": "tsc --noEmit",
108
- "test": "vitest run --config vitest.unit.config.ts",
109
- "test:watch": "vitest --config vitest.unit.config.ts",
110
- "test:integration": "vitest run --config vitest.integration.config.ts",
111
- "test:integration:watch": "vitest --config vitest.integration.config.ts",
112
- "test:all": "pnpm test && pnpm test:integration",
113
- "check-format": "prettier --check ./src",
114
- "check-exports": "attw --pack . --ignore-rules false-esm no-resolution",
115
- "clean": "rimraf dist",
116
- "quality": "pnpm type-check && pnpm test && pnpm lint && pnpm format:check && pnpm check-exports"
117
117
  }
118
- }
118
+ }