-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.7 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.7 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@lloyal-labs/lloyal.node",
"version": "2.1.1",
"description": "Node.js client for liblloyal+llama.cpp",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"gypfile": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"download-models": "bash scripts/download-test-models.sh",
"build:native": "node scripts/build.js",
"build:ts": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"build": "npm run build:ts && npm run build:native",
"build:debug": "cmake-js compile --debug",
"rebuild": "cmake-js rebuild",
"clean": "cmake-js clean && rm -rf build_test/ dist/",
"version": "node scripts/sync-versions.js && git add -A",
"docs": "npx typedoc",
"test": "npm run test:integration",
"test:integration": "npx tsx test/integration.ts",
"test:examples": "npx tsx test/examples.ts",
"sync:llama-cpp": "node scripts/sync-llama-cpp.js",
"example": "npx tsx examples/chat/chat.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lloyal-ai/lloyal.node.git"
},
"keywords": [
"llama",
"llama.cpp",
"liblloyal",
"napi",
"native",
"inference",
"llm"
],
"author": "lloyal.ai",
"license": "Apache-2.0",
"type": "commonjs",
"bugs": {
"url": "https://github.com/lloyal-ai/lloyal.node/issues"
},
"homepage": "https://github.com/lloyal-ai/lloyal.node#readme",
"dependencies": {
"@lloyal-labs/tsampler": "^0.2.0",
"node-addon-api": "^8.5.0"
},
"peerDependencies": {
"@lloyal-labs/lloyal-agents": ">=1.0.0",
"@lloyal-labs/sdk": ">=1.0.0"
},
"devDependencies": {
"@lloyal-labs/lloyal-agents": "^1.5.4",
"@lloyal-labs/sdk": "^1.5.4",
"@types/node": "^25.3.0",
"cmake-js": "^8.0.0",
"glob": "^11.0.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.16",
"typedoc-rhineai-theme": "^1.2.0",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@lloyal-labs/lloyal.node-darwin-arm64": "2.1.1",
"@lloyal-labs/lloyal.node-darwin-x64": "2.1.1",
"@lloyal-labs/lloyal.node-linux-arm64": "2.1.1",
"@lloyal-labs/lloyal.node-linux-arm64-cuda": "2.1.1",
"@lloyal-labs/lloyal.node-linux-arm64-vulkan": "2.1.1",
"@lloyal-labs/lloyal.node-linux-x64": "2.1.1",
"@lloyal-labs/lloyal.node-linux-x64-cuda": "2.1.1",
"@lloyal-labs/lloyal.node-linux-x64-vulkan": "2.1.1",
"@lloyal-labs/lloyal.node-win32-arm64": "2.1.1",
"@lloyal-labs/lloyal.node-win32-arm64-vulkan": "2.1.1",
"@lloyal-labs/lloyal.node-win32-x64": "2.1.1",
"@lloyal-labs/lloyal.node-win32-x64-cuda": "2.1.1",
"@lloyal-labs/lloyal.node-win32-x64-vulkan": "2.1.1"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist/",
"scripts/"
]
}