@auxot/worker-cli 0.3.5 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +190 -5965
- package/dist/index.js.map +4 -4
- package/package.json +11 -23
- package/dist/registry.json +0 -10386
package/package.json
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@auxot/worker-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "Auxot GPU worker CLI
|
|
6
|
-
"license": "
|
|
5
|
+
"description": "Auxot GPU worker CLI — connects your GPU to an auxot-router",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
7
|
"author": "Auxot <support@auxot.com>",
|
|
8
|
-
"homepage": "https://
|
|
8
|
+
"homepage": "https://github.com/auxothq/auxot",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/
|
|
12
|
-
"directory": "apps/worker-cli"
|
|
13
|
-
},
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://github.com/keith301/auxot/issues"
|
|
11
|
+
"url": "https://github.com/auxothq/auxot.git"
|
|
16
12
|
},
|
|
17
13
|
"keywords": [
|
|
18
14
|
"auxot",
|
|
@@ -20,37 +16,29 @@
|
|
|
20
16
|
"worker",
|
|
21
17
|
"llama",
|
|
22
18
|
"llm",
|
|
23
|
-
"ai"
|
|
19
|
+
"ai",
|
|
20
|
+
"inference"
|
|
24
21
|
],
|
|
25
22
|
"bin": {
|
|
26
|
-
"auxot-worker
|
|
27
|
-
"worker-cli": "./dist/index.js"
|
|
23
|
+
"auxot-worker": "./dist/index.js"
|
|
28
24
|
},
|
|
29
25
|
"files": [
|
|
30
26
|
"dist/**/*",
|
|
31
27
|
"README.md"
|
|
32
28
|
],
|
|
33
29
|
"scripts": {
|
|
34
|
-
"dev": "tsx src/index.ts",
|
|
35
|
-
"dev:debug": "tsx src/index.ts --debug 1",
|
|
36
|
-
"dev:debug2": "tsx src/index.ts --debug 2",
|
|
37
30
|
"build": "node build.mjs",
|
|
38
31
|
"start": "node dist/index.js",
|
|
39
32
|
"prepublishOnly": "npm run build"
|
|
40
33
|
},
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"eventsource-parser": "^1.1.2",
|
|
43
|
-
"ws": "^8.16.0",
|
|
44
|
-
"uuid": "^9.0.1"
|
|
45
|
-
},
|
|
46
34
|
"devDependencies": {
|
|
47
|
-
"@auxot/model-registry": "*",
|
|
48
35
|
"@types/node": "^20.10.6",
|
|
49
|
-
"@types/ws": "^8.5.10",
|
|
50
36
|
"esbuild": "^0.20.0",
|
|
51
|
-
"tsx": "^4.7.0",
|
|
52
37
|
"typescript": "^5.3.3"
|
|
53
38
|
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public"
|
|
41
|
+
},
|
|
54
42
|
"engines": {
|
|
55
43
|
"node": ">=18.0.0"
|
|
56
44
|
}
|