@genkit-ai/express 1.10.0 → 1.11.0
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/README.md +1 -1
- package/package.json +3 -3
- package/tsconfig.json +0 -4
- package/tsup.config.ts +0 -22
package/README.md
CHANGED
|
@@ -83,6 +83,6 @@ console.log(await result.output);
|
|
|
83
83
|
|
|
84
84
|
The sources for this package are in the main [Genkit](https://github.com/firebase/genkit) repo. Please file issues and pull requests against that repo.
|
|
85
85
|
|
|
86
|
-
Usage information and reference details can be found in [Genkit documentation](https://
|
|
86
|
+
Usage information and reference details can be found in [Genkit documentation](https://genkit.dev/docs/get-started).
|
|
87
87
|
|
|
88
88
|
License: Apache 2.0
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"genai",
|
|
10
10
|
"generative-ai"
|
|
11
11
|
],
|
|
12
|
-
"version": "1.
|
|
12
|
+
"version": "1.11.0",
|
|
13
13
|
"type": "commonjs",
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"express": "^4.21.1",
|
|
27
|
-
"@genkit-ai/core": "1.
|
|
28
|
-
"genkit": "^1.
|
|
27
|
+
"@genkit-ai/core": "1.11.0",
|
|
28
|
+
"genkit": "^1.11.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"get-port": "^5.1.0",
|
package/tsconfig.json
DELETED
package/tsup.config.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright 2024 Google LLC
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
import { defineConfig, Options } from 'tsup';
|
|
18
|
-
import { defaultOptions } from '../../tsup.common';
|
|
19
|
-
|
|
20
|
-
export default defineConfig({
|
|
21
|
-
...(defaultOptions as Options),
|
|
22
|
-
});
|