-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nuxt-ollama",
"version": "1.3.3",
"description": "Easy ollama integration for Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/thoda-dev/nuxt-ollama.git"
},
"license": "MIT",
"type": "module",
"author": {
"name": "Thoda",
"url": "https://jericho.dev"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release && pnpm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"bump": "pnpm self-update && pnpm update"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"defu": "^6.1.7",
"ollama": "^0.6.3"
},
"devDependencies": {
"@nuxt/devtools": "^3.4.1",
"@nuxt/eslint-config": "^1.17.0",
"@nuxt/kit": "^4.5.2",
"@nuxt/module-builder": "^1.0.3",
"@nuxt/schema": "^4.5.2",
"@nuxt/test-utils": "^4.1.0",
"@types/node": "latest",
"changelogen": "^0.6.2",
"eslint": "^10.8.1",
"nuxt": "^4.5.2",
"typescript": "^6.0.3",
"vitest": "^4.1.11",
"vue-tsc": "^3.3.10"
},
"packageManager": "pnpm@11.22.0"
}