nuxt-ollama 1.0.13 → 1.0.16
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.
- package/dist/module.d.mts +2 -1
- package/dist/module.d.ts +2 -1
- package/dist/module.json +1 -1
- package/dist/types.d.mts +7 -1
- package/dist/types.d.ts +7 -1
- package/package.json +9 -6
package/dist/module.d.mts
CHANGED
package/dist/module.d.ts
CHANGED
package/dist/module.json
CHANGED
package/dist/types.d.mts
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import type { NuxtModule } from '@nuxt/schema'
|
|
2
|
+
|
|
3
|
+
import type { default as Module } from './module.js'
|
|
4
|
+
|
|
5
|
+
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
6
|
+
|
|
7
|
+
export { default } from './module.js'
|
package/dist/types.d.ts
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import type { NuxtModule } from '@nuxt/schema'
|
|
2
|
+
|
|
3
|
+
import type { default as Module } from './module'
|
|
4
|
+
|
|
5
|
+
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
6
|
+
|
|
7
|
+
export { default } from './module'
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-ollama",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"description": "Easy ollama integration for Nuxt",
|
|
5
|
-
"repository":
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/jericho1060/nuxt-ollama.git"
|
|
8
|
+
},
|
|
6
9
|
"license": "MIT",
|
|
7
10
|
"type": "module",
|
|
8
11
|
"author": {
|
|
@@ -36,19 +39,19 @@
|
|
|
36
39
|
"@typescript-eslint/eslint-plugin": "^8.24.0",
|
|
37
40
|
"@typescript-eslint/parser": "^8.24.0",
|
|
38
41
|
"defu": "^6.1.4",
|
|
39
|
-
"ollama": "^0.5.13"
|
|
40
|
-
"@nuxt/kit": "^3.15.4"
|
|
42
|
+
"ollama": "^0.5.13"
|
|
41
43
|
},
|
|
42
44
|
"devDependencies": {
|
|
43
45
|
"@nuxt/devtools": "^2.0.0",
|
|
44
46
|
"@nuxt/eslint-config": "^1.0.1",
|
|
47
|
+
"@nuxt/kit": "^3.16.2",
|
|
45
48
|
"@nuxt/module-builder": "^0.8.4",
|
|
46
|
-
"@nuxt/schema": "^3.
|
|
49
|
+
"@nuxt/schema": "^3.16.2",
|
|
47
50
|
"@nuxt/test-utils": "^3.15.4",
|
|
48
51
|
"@types/node": "latest",
|
|
49
52
|
"changelogen": "^0.5.7",
|
|
50
53
|
"eslint": "^9.20.0",
|
|
51
|
-
"nuxt": "^3.
|
|
54
|
+
"nuxt": "^3.16.2",
|
|
52
55
|
"typescript": "~5.7.3",
|
|
53
56
|
"vitest": "^3.0.5",
|
|
54
57
|
"vue-tsc": "^2.2.0"
|