-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.24 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.24 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "genkitx-mistral",
"description": "Firebase Genkit AI framework plugin for Mistral AI APIs.",
"keywords": [
"genkit",
"genkit-plugin",
"genkit-model",
"mistralai",
"ai",
"genai",
"generative-ai"
],
"version": "0.20.3",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/TheFireCo/genkit-plugins.git",
"directory": "plugins/mistralai"
},
"author": "TheFireCo",
"license": "Apache-2.0",
"dependencies": {
"@mistralai/mistralai": "^1.5.0"
},
"peerDependencies": {
"genkit": "^0.9.0 || ^1.0.0"
},
"devDependencies": {
"@types/node": "^20.11.16",
"npm-run-all": "^4.1.5",
"tsup": "^8.0.2",
"tsx": "^4.7.0",
"typescript": "^5.8.2"
},
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"check": "tsc",
"compile": "tsup-node",
"build:clean": "rm -rf ./lib",
"build": "npm-run-all build:clean check compile",
"build:watch": "tsup-node --watch"
}
}