@linxiraos/pi-ai 1.0.2 → 1.0.4
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 +137 -137
package/package.json
CHANGED
|
@@ -1,137 +1,137 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "module",
|
|
3
|
-
"name": "@linxiraos/pi-ai",
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"description": "Unified LLM API with automatic model discovery and provider configuration",
|
|
6
|
-
"homepage": "https://linxira-os.github.io",
|
|
7
|
-
"author": "Can Boluk",
|
|
8
|
-
"contributors": [
|
|
9
|
-
"Mario Zechner"
|
|
10
|
-
],
|
|
11
|
-
"license": "MIT",
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "git+https://github.com/Linxira-OS/linxira-zeta.git",
|
|
15
|
-
"directory": "packages/ai"
|
|
16
|
-
},
|
|
17
|
-
"bugs": {
|
|
18
|
-
"url": "https://github.com/can1357/oh-my-pi/issues"
|
|
19
|
-
},
|
|
20
|
-
"keywords": [
|
|
21
|
-
"ai",
|
|
22
|
-
"llm",
|
|
23
|
-
"openai",
|
|
24
|
-
"anthropic",
|
|
25
|
-
"gemini",
|
|
26
|
-
"unified",
|
|
27
|
-
"api"
|
|
28
|
-
],
|
|
29
|
-
"main": "./src/index.ts",
|
|
30
|
-
"types": "./src/index.ts",
|
|
31
|
-
"scripts": {
|
|
32
|
-
"check": "biome check . && bun run check:types",
|
|
33
|
-
"check:types": "tsgo -p tsconfig.json --noEmit",
|
|
34
|
-
"lint": "biome lint .",
|
|
35
|
-
"test": "bun test --parallel",
|
|
36
|
-
"fix": "biome check --write --unsafe .",
|
|
37
|
-
"fmt": "biome format --write ."
|
|
38
|
-
},
|
|
39
|
-
"dependencies": {
|
|
40
|
-
"@bufbuild/protobuf": "
|
|
41
|
-
"@linxiraos/pi-omptype": "
|
|
42
|
-
"@linxiraos/pi-catalog": "
|
|
43
|
-
"@linxiraos/pi-utils": "
|
|
44
|
-
"@linxiraos/pi-wire": "
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@bufbuild/protoc-gen-es": "
|
|
48
|
-
"@types/bun": "
|
|
49
|
-
},
|
|
50
|
-
"engines": {
|
|
51
|
-
"bun": ">=1.3.14"
|
|
52
|
-
},
|
|
53
|
-
"files": [
|
|
54
|
-
"src",
|
|
55
|
-
"README.md",
|
|
56
|
-
"CHANGELOG.md"
|
|
57
|
-
],
|
|
58
|
-
"exports": {
|
|
59
|
-
".": {
|
|
60
|
-
"types": "./src/index.ts",
|
|
61
|
-
"import": "./src/index.ts"
|
|
62
|
-
},
|
|
63
|
-
"./error": {
|
|
64
|
-
"types": "./src/error/index.ts",
|
|
65
|
-
"import": "./src/error/index.ts"
|
|
66
|
-
},
|
|
67
|
-
"./*": {
|
|
68
|
-
"types": "./src/*.ts",
|
|
69
|
-
"import": "./src/*.ts"
|
|
70
|
-
},
|
|
71
|
-
"./auth-broker": {
|
|
72
|
-
"types": "./src/auth-broker/index.ts",
|
|
73
|
-
"import": "./src/auth-broker/index.ts"
|
|
74
|
-
},
|
|
75
|
-
"./auth-broker/*": {
|
|
76
|
-
"types": "./src/auth-broker/*.ts",
|
|
77
|
-
"import": "./src/auth-broker/*.ts"
|
|
78
|
-
},
|
|
79
|
-
"./auth-gateway": {
|
|
80
|
-
"types": "./src/auth-gateway/index.ts",
|
|
81
|
-
"import": "./src/auth-gateway/index.ts"
|
|
82
|
-
},
|
|
83
|
-
"./auth-gateway/*": {
|
|
84
|
-
"types": "./src/auth-gateway/*.ts",
|
|
85
|
-
"import": "./src/auth-gateway/*.ts"
|
|
86
|
-
},
|
|
87
|
-
"./providers/*": {
|
|
88
|
-
"types": "./src/providers/*.ts",
|
|
89
|
-
"import": "./src/providers/*.ts"
|
|
90
|
-
},
|
|
91
|
-
"./providers/openai-codex/*": {
|
|
92
|
-
"types": "./src/providers/openai-codex/*.ts",
|
|
93
|
-
"import": "./src/providers/openai-codex/*.ts"
|
|
94
|
-
},
|
|
95
|
-
"./usage/*": {
|
|
96
|
-
"types": "./src/usage/*.ts",
|
|
97
|
-
"import": "./src/usage/*.ts"
|
|
98
|
-
},
|
|
99
|
-
"./utils/harmony-leak": {
|
|
100
|
-
"types": "./src/utils/harmony-leak.ts",
|
|
101
|
-
"import": "./src/utils/harmony-leak.ts"
|
|
102
|
-
},
|
|
103
|
-
"./dialect": {
|
|
104
|
-
"types": "./src/dialect/index.ts",
|
|
105
|
-
"import": "./src/dialect/index.ts"
|
|
106
|
-
},
|
|
107
|
-
"./utils/*": {
|
|
108
|
-
"types": "./src/utils/*.ts",
|
|
109
|
-
"import": "./src/utils/*.ts"
|
|
110
|
-
},
|
|
111
|
-
"./oauth": {
|
|
112
|
-
"types": "./src/registry/oauth/index.ts",
|
|
113
|
-
"import": "./src/registry/oauth/index.ts"
|
|
114
|
-
},
|
|
115
|
-
"./oauth/*": {
|
|
116
|
-
"types": "./src/registry/oauth/*.ts",
|
|
117
|
-
"import": "./src/registry/oauth/*.ts"
|
|
118
|
-
},
|
|
119
|
-
"./registry": {
|
|
120
|
-
"types": "./src/registry/index.ts",
|
|
121
|
-
"import": "./src/registry/index.ts"
|
|
122
|
-
},
|
|
123
|
-
"./registry/oauth": {
|
|
124
|
-
"types": "./src/registry/oauth/index.ts",
|
|
125
|
-
"import": "./src/registry/oauth/index.ts"
|
|
126
|
-
},
|
|
127
|
-
"./utils/schema": {
|
|
128
|
-
"types": "./src/utils/schema/index.ts",
|
|
129
|
-
"import": "./src/utils/schema/index.ts"
|
|
130
|
-
},
|
|
131
|
-
"./utils/schema/*": {
|
|
132
|
-
"types": "./src/utils/schema/*.ts",
|
|
133
|
-
"import": "./src/utils/schema/*.ts"
|
|
134
|
-
},
|
|
135
|
-
"./*.js": "./src/*.ts"
|
|
136
|
-
}
|
|
137
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"type": "module",
|
|
3
|
+
"name": "@linxiraos/pi-ai",
|
|
4
|
+
"version": "1.0.4",
|
|
5
|
+
"description": "Unified LLM API with automatic model discovery and provider configuration",
|
|
6
|
+
"homepage": "https://linxira-os.github.io",
|
|
7
|
+
"author": "Can Boluk",
|
|
8
|
+
"contributors": [
|
|
9
|
+
"Mario Zechner"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/Linxira-OS/linxira-zeta.git",
|
|
15
|
+
"directory": "packages/ai"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/can1357/oh-my-pi/issues"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"ai",
|
|
22
|
+
"llm",
|
|
23
|
+
"openai",
|
|
24
|
+
"anthropic",
|
|
25
|
+
"gemini",
|
|
26
|
+
"unified",
|
|
27
|
+
"api"
|
|
28
|
+
],
|
|
29
|
+
"main": "./src/index.ts",
|
|
30
|
+
"types": "./src/index.ts",
|
|
31
|
+
"scripts": {
|
|
32
|
+
"check": "biome check . && bun run check:types",
|
|
33
|
+
"check:types": "tsgo -p tsconfig.json --noEmit",
|
|
34
|
+
"lint": "biome lint .",
|
|
35
|
+
"test": "bun test --parallel",
|
|
36
|
+
"fix": "biome check --write --unsafe .",
|
|
37
|
+
"fmt": "biome format --write ."
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@bufbuild/protobuf": "^2.12.1",
|
|
41
|
+
"@linxiraos/pi-omptype": "1.0.2",
|
|
42
|
+
"@linxiraos/pi-catalog": "1.0.4",
|
|
43
|
+
"@linxiraos/pi-utils": "1.0.4",
|
|
44
|
+
"@linxiraos/pi-wire": "1.0.2"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@bufbuild/protoc-gen-es": "^2.12.1",
|
|
48
|
+
"@types/bun": "^1.3.14"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"bun": ">=1.3.14"
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"src",
|
|
55
|
+
"README.md",
|
|
56
|
+
"CHANGELOG.md"
|
|
57
|
+
],
|
|
58
|
+
"exports": {
|
|
59
|
+
".": {
|
|
60
|
+
"types": "./src/index.ts",
|
|
61
|
+
"import": "./src/index.ts"
|
|
62
|
+
},
|
|
63
|
+
"./error": {
|
|
64
|
+
"types": "./src/error/index.ts",
|
|
65
|
+
"import": "./src/error/index.ts"
|
|
66
|
+
},
|
|
67
|
+
"./*": {
|
|
68
|
+
"types": "./src/*.ts",
|
|
69
|
+
"import": "./src/*.ts"
|
|
70
|
+
},
|
|
71
|
+
"./auth-broker": {
|
|
72
|
+
"types": "./src/auth-broker/index.ts",
|
|
73
|
+
"import": "./src/auth-broker/index.ts"
|
|
74
|
+
},
|
|
75
|
+
"./auth-broker/*": {
|
|
76
|
+
"types": "./src/auth-broker/*.ts",
|
|
77
|
+
"import": "./src/auth-broker/*.ts"
|
|
78
|
+
},
|
|
79
|
+
"./auth-gateway": {
|
|
80
|
+
"types": "./src/auth-gateway/index.ts",
|
|
81
|
+
"import": "./src/auth-gateway/index.ts"
|
|
82
|
+
},
|
|
83
|
+
"./auth-gateway/*": {
|
|
84
|
+
"types": "./src/auth-gateway/*.ts",
|
|
85
|
+
"import": "./src/auth-gateway/*.ts"
|
|
86
|
+
},
|
|
87
|
+
"./providers/*": {
|
|
88
|
+
"types": "./src/providers/*.ts",
|
|
89
|
+
"import": "./src/providers/*.ts"
|
|
90
|
+
},
|
|
91
|
+
"./providers/openai-codex/*": {
|
|
92
|
+
"types": "./src/providers/openai-codex/*.ts",
|
|
93
|
+
"import": "./src/providers/openai-codex/*.ts"
|
|
94
|
+
},
|
|
95
|
+
"./usage/*": {
|
|
96
|
+
"types": "./src/usage/*.ts",
|
|
97
|
+
"import": "./src/usage/*.ts"
|
|
98
|
+
},
|
|
99
|
+
"./utils/harmony-leak": {
|
|
100
|
+
"types": "./src/utils/harmony-leak.ts",
|
|
101
|
+
"import": "./src/utils/harmony-leak.ts"
|
|
102
|
+
},
|
|
103
|
+
"./dialect": {
|
|
104
|
+
"types": "./src/dialect/index.ts",
|
|
105
|
+
"import": "./src/dialect/index.ts"
|
|
106
|
+
},
|
|
107
|
+
"./utils/*": {
|
|
108
|
+
"types": "./src/utils/*.ts",
|
|
109
|
+
"import": "./src/utils/*.ts"
|
|
110
|
+
},
|
|
111
|
+
"./oauth": {
|
|
112
|
+
"types": "./src/registry/oauth/index.ts",
|
|
113
|
+
"import": "./src/registry/oauth/index.ts"
|
|
114
|
+
},
|
|
115
|
+
"./oauth/*": {
|
|
116
|
+
"types": "./src/registry/oauth/*.ts",
|
|
117
|
+
"import": "./src/registry/oauth/*.ts"
|
|
118
|
+
},
|
|
119
|
+
"./registry": {
|
|
120
|
+
"types": "./src/registry/index.ts",
|
|
121
|
+
"import": "./src/registry/index.ts"
|
|
122
|
+
},
|
|
123
|
+
"./registry/oauth": {
|
|
124
|
+
"types": "./src/registry/oauth/index.ts",
|
|
125
|
+
"import": "./src/registry/oauth/index.ts"
|
|
126
|
+
},
|
|
127
|
+
"./utils/schema": {
|
|
128
|
+
"types": "./src/utils/schema/index.ts",
|
|
129
|
+
"import": "./src/utils/schema/index.ts"
|
|
130
|
+
},
|
|
131
|
+
"./utils/schema/*": {
|
|
132
|
+
"types": "./src/utils/schema/*.ts",
|
|
133
|
+
"import": "./src/utils/schema/*.ts"
|
|
134
|
+
},
|
|
135
|
+
"./*.js": "./src/*.ts"
|
|
136
|
+
}
|
|
137
|
+
}
|