-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.85 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "genkitx-github",
"description": "Firebase Genkit AI framework plugin for GitHub Models APIs.",
"keywords": [
"genkit",
"genkit-plugin",
"genkit-model",
"github",
"github-models",
"githubmodels",
"ai",
"genai",
"generative-ai"
],
"version": "1.0.0",
"type": "commonjs",
"main": "lib/cjs/index.js",
"module": "./lib/esm/index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/xavidop/genkitx-github.git"
},
"author": "Xavier Portilla Edo",
"license": "Apache-2.0",
"dependencies": {
"@azure-rest/ai-inference": "^1.0.0-beta.2",
"@azure/core-auth": "^1.7.2",
"@azure/core-sse": "^2.1.3",
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/node": "^22.5.4",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typedoc": "^0.26.7",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"default": "./lib/cjs/index.js",
"import": "./lib/esm/index.mjs",
"types": "./lib/cjs/index.d.ts"
}
},
"files": [
"lib"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"clean": "rimraf ./lib",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && yarn run rename:esm",
"rename:esm": "./scripts/fix-mjs.sh",
"build": "yarn run build:cjs && yarn run build:esm",
"prepack": "npm run clean && npm run build",
"prettier": "prettier 'src/**/*.ts' --write",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"docs": "typedoc ./src/index.ts --out ./docs --tsconfig ./tsconfig.esm.json"
}
}