iaurora 1.0.2 → 1.0.3
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/package.json +42 -42
package/package.json
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version":
|
|
3
|
-
"author":
|
|
4
|
-
"license":
|
|
5
|
-
"files":
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"keywords":
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"name":
|
|
23
|
-
"type":
|
|
24
|
-
"bugs":
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"description":
|
|
28
|
-
"engines":
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"scripts":
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"homepage":
|
|
35
|
-
"repository":
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"bin":
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.3",
|
|
3
|
+
"author": "SantiagoDePolonia",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"files": [
|
|
6
|
+
"bin/",
|
|
7
|
+
"scripts/",
|
|
8
|
+
"config.yaml",
|
|
9
|
+
"README.md",
|
|
10
|
+
"LICENSE"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"ai",
|
|
14
|
+
"llm",
|
|
15
|
+
"gateway",
|
|
16
|
+
"openai",
|
|
17
|
+
"anthropic",
|
|
18
|
+
"gemini",
|
|
19
|
+
"proxy",
|
|
20
|
+
"api-gateway"
|
|
21
|
+
],
|
|
22
|
+
"name": "iaurora",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/gurveeer/Aurora/issues"
|
|
26
|
+
},
|
|
27
|
+
"description": "Aurora AI Gateway - one API for every LLM provider. Self-hosted, open-source.",
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=18"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"postinstall": "node scripts/npm-postinstall.js"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://github.com/gurveeer/Aurora#readme",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/gurveeer/Aurora.git"
|
|
38
|
+
},
|
|
39
|
+
"bin": {
|
|
40
|
+
"aurora": "bin/aurora.js"
|
|
41
|
+
}
|
|
42
|
+
}
|