-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
172 lines (172 loc) · 5.99 KB
/
package.json
File metadata and controls
172 lines (172 loc) · 5.99 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "llm-runner-router",
"version": "2.0.0",
"description": "Universal LLM model loader and inference router - agnostic, fast, and intelligent",
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"demo": "node src/index.js",
"build": "node scripts/build.js",
"prebuild": "node scripts/prebuild-automation.js",
"deploy": "node scripts/deploy.js",
"migrate": "node -e \"import('./src/db/DatabaseManager.js').then(({DatabaseManager}) => new DatabaseManager().initialize())\"",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:unit": "node --experimental-vm-modules node_modules/.bin/jest tests/basic.test.js",
"test:integration": "node --experimental-vm-modules node_modules/.bin/jest tests/integration",
"test:enterprise": "node --experimental-vm-modules node_modules/.bin/jest tests/enterprise",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"benchmark": "node examples/benchmarks/performance.js",
"setup:bitnet": "node scripts/setup-bitnet.js",
"test:bitnet": "node scripts/test-bitnet.js",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js",
"docs": "jsdoc -c jsdoc.json",
"docs:serve": "node docs-express-server.js",
"build:bindings": "./scripts/build-all-bindings.sh --release",
"build:bindings:debug": "./scripts/build-all-bindings.sh --debug",
"build:python": "./scripts/build-all-bindings.sh --target python",
"build:rust": "./scripts/build-all-bindings.sh --target rust",
"build:wasm": "./scripts/build-all-bindings.sh --target wasm",
"build:native": "./scripts/build-all-bindings.sh --target native",
"test:bindings": "npm run test:python && npm run test:rust && npm run test:wasm && npm run test:native",
"test:python": "cd bindings/python && python -m pytest tests/ -v",
"test:rust": "cd bindings/rust && cargo test",
"test:wasm": "cd bindings/wasm && wasm-pack test --chrome --headless",
"test:native": "cd src/native && cargo test && npm test",
"install:python": "cd bindings/python && pip install -e .",
"install:rust": "cd bindings/rust && cargo build --release",
"install:wasm": "cd bindings/wasm && wasm-pack build --target web",
"install:native": "cd src/native && npm install && npm run build",
"clean:bindings": "rm -rf bindings/*/target bindings/*/pkg* bindings/*/dist bindings/*/build src/native/target dist/",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"prepack": "npm run build"
},
"keywords": [
"llm",
"ai",
"machine-learning",
"inference",
"gguf",
"onnx",
"model-loader",
"router",
"webgpu",
"wasm",
"enterprise",
"multi-tenancy",
"ab-testing",
"audit-logging",
"sla-monitoring",
"authentication"
],
"author": "Echo AI Systems",
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.10.0",
"@graphql-tools/schema": "^10.0.25",
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.8.0",
"@huggingface/hub": "^0.15.0",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/auto-instrumentations-node": "^0.46.1",
"@opentelemetry/exporter-jaeger": "^1.25.1",
"@opentelemetry/exporter-prometheus": "^0.52.1",
"@opentelemetry/exporter-zipkin": "^1.25.1",
"@opentelemetry/resources": "^1.25.1",
"@opentelemetry/sdk-metrics": "^1.25.1",
"@opentelemetry/sdk-node": "^0.52.1",
"@opentelemetry/sdk-trace-base": "^1.25.1",
"@opentelemetry/sdk-trace-node": "^1.25.1",
"@opentelemetry/semantic-conventions": "^1.25.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@xenova/transformers": "^2.17.0",
"bcrypt": "^6.0.0",
"circuit-breaker": "^0.0.4",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"express-session": "^1.18.2",
"express-validator": "^7.2.1",
"graphql": "^16.8.0",
"graphql-subscriptions": "^3.0.0",
"helmet": "^8.1.0",
"http-proxy-middleware": "^3.0.5",
"iconv-lite": "^0.7.0",
"ioredis": "^5.7.0",
"jsonwebtoken": "^9.0.2",
"lru-cache": "^10.2.0",
"ml-distance": "^4.0.0",
"morgan": "^1.10.1",
"msgpackr": "^1.10.0",
"multer": "^2.0.2",
"node-llama-cpp": "^3.12.4",
"onnxruntime-node": "^1.22.0-rev",
"onnxruntime-web": "^1.22.0",
"openapi-types": "^12.1.3",
"p-queue": "^8.0.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.8.0",
"pino": "^8.19.0",
"prom-client": "^15.1.3",
"rate-limiter-flexible": "^7.2.0",
"redis": "^5.8.1",
"sharp": "^0.33.0",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tiktoken": "^1.0.0",
"uuid": "^11.1.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@eslint/js": "^9.33.0",
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"fastify": "^4.26.0",
"globals": "^16.3.0",
"jest": "^29.7.0",
"joi": "^18.0.0",
"jsdoc": "^4.0.0",
"nodemon": "^3.0.0",
"prettier": "^3.2.0",
"supertest": "^7.1.4",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.0",
"winston": "^3.17.0"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MCERQUA/LLM-Runner-Router.git"
},
"bugs": {
"url": "https://github.com/MCERQUA/LLM-Runner-Router/issues"
},
"homepage": "https://github.com/MCERQUA/LLM-Runner-Router#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"src/",
"types/",
"bindings/",
"scripts/build-all-bindings.sh",
"README.md",
"LICENSE",
"package.json"
]
}