-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "nuxt-local-model",
"version": "0.1.10",
"description": "A Nuxt module for local in-app Hugging Face transformer models.",
"license": "MIT",
"repository": "https://github.com/Aft1n/nuxt-local-model",
"workspaces": [
"playground"
],
"files": [
"dist",
"README.md",
"assets"
],
"type": "module",
"main": "./dist/module.mjs",
"module": "./dist/module.mjs",
"types": "./dist/module.d.mts",
"exports": {
".": {
"types": "./dist/module.d.mts",
"import": "./dist/module.mjs"
},
"./client": {
"types": "./dist/runtime/composables/useLocalModel.d.ts",
"import": "./dist/runtime/composables/useLocalModel.js"
},
"./server": {
"types": "./dist/runtime/server/index.d.ts",
"import": "./dist/runtime/server/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxi dev playground",
"build": "nuxt build-module",
"prepare": "nuxt build-module --prepare",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --config vitest.config.ts",
"prepack": "nuxt-module-build build",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"release": "npm run lint && npm run test && npm run test:types && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "oxlint .",
"test:types": "vue-tsc --noEmit && nuxt prepare playground && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"onnxruntime-node": "^1.24.3"
},
"devDependencies": {
"@nuxt/kit": "^4.4.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/test-utils": "^4.0.0",
"@types/node": "^24.12.0",
"changelogen": "^0.6.2",
"nuxt": "^4.4.2",
"oxlint": "^1.57.0",
"typescript": "^5.9.3",
"vitest": "^4.1.1",
"vue-tsc": "^3.2.6"
},
"peerDependencies": {
"nuxt": "^4.4.2"
},
"trustedDependencies": [
"@parcel/watcher",
"onnxruntime-node",
"protobufjs"
]
}