-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (41 loc) · 1.12 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
{
"name": "solo-server-js",
"version": "0.1.0",
"description": "A modular and extensible local AI orchestration framework.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest --testPathIgnorePatterns /node_modules/ --testMatch '**/tests/**/*.test.js'",
"benchmark:toy": "node benchmarks/nlp/fillMask.benchmark.js",
"profile:toy": "node profiles/nlp/fillMask.profile.js"
},
"keywords": [
"ai",
"local-ai",
"nlp",
"vision",
"audio",
"benchmarking",
"orchestration"
],
"author": "Dhruv Diddi <dhruv.diddi+1@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AIEngineersDev/solo-server-js.git"
},
"bugs": {
"url": "https://github.com/AIEngineersDev/solo-server-js/issues"
},
"homepage": "https://github.com/AIEngineersDev/solo-server-js#readme",
"dependencies": {
"express": "^4.18.2",
"winston": "^3.8.2"
},
"devDependencies": {
"jest": "^29.7.0"
},
"engines": {
"node": ">=14.0.0"
}
}