-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.03 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.03 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
{
"name": "@kessler/gemma",
"version": "1.0.0",
"description": "Node.js package for Gemma 4 — local multimodal inference and agent system",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"gemma",
"gemma4",
"llm",
"local",
"multimodal",
"agent",
"onnx",
"transformers"
],
"author": "Yaniv Kessler",
"license": "Apache-2.0",
"packageManager": "pnpm@10.30.2",
"dependencies": {
"@huggingface/transformers": "^4.0.1",
"audio-decode": "^3.8.1"
},
"peerDependencies": {
"onnxruntime-node": ">=1.20.0"
},
"peerDependenciesMeta": {
"onnxruntime-node": {
"optional": true
}
},
"devDependencies": {
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.1.1"
}
}