nuxt-ollama 1.1.1 → 1.1.2
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/README.md +7 -2
- package/dist/module.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# <img src="./nuxt-ollama.png" style="width:
|
|
1
|
+
# <img src="./nuxt-ollama.png" style="width:50px;"> Nuxt Ollama
|
|
2
2
|
|
|
3
3
|
[![npm version][npm-version-src]][npm-version-href]
|
|
4
4
|
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
@@ -18,9 +18,14 @@ You have to install Ollama to use this module. See [Official Website](https://ol
|
|
|
18
18
|
## Quick Setup
|
|
19
19
|
|
|
20
20
|
Install the module to your Nuxt application with one command:
|
|
21
|
-
|
|
21
|
+
- using npm
|
|
22
22
|
```bash
|
|
23
23
|
npx nuxi module add nuxt-ollama
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
- using pnpm
|
|
27
|
+
```bash
|
|
28
|
+
pnpx nuxi module add nuxt-ollama
|
|
24
29
|
```
|
|
25
30
|
|
|
26
31
|
That's it! You can now use Nuxt Ollama in your Nuxt app ✨
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-ollama",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Easy ollama integration for Nuxt",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@nuxt/devtools": "^2.6.5",
|
|
33
33
|
"@nuxt/eslint-config": "^1.9.0",
|
|
34
|
-
"@nuxt/kit": "^4.
|
|
34
|
+
"@nuxt/kit": "^4.2.0",
|
|
35
35
|
"@nuxt/module-builder": "^1.0.2",
|
|
36
|
-
"@nuxt/schema": "^4.
|
|
37
|
-
"@nuxt/test-utils": "^3.
|
|
36
|
+
"@nuxt/schema": "^4.2.0",
|
|
37
|
+
"@nuxt/test-utils": "^3.20.1",
|
|
38
38
|
"@types/node": "latest",
|
|
39
39
|
"changelogen": "^0.5.7",
|
|
40
40
|
"eslint": "^9.38.0",
|
|
41
|
-
"nuxt": "^4.
|
|
41
|
+
"nuxt": "^4.2.0",
|
|
42
42
|
"typescript": "^5.9.3",
|
|
43
43
|
"vitest": "^3.2.4",
|
|
44
44
|
"vue-tsc": "^2.2.12"
|