forked from genkit-ai/genkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2 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
{
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm install && pnpm build:libs && pnpm build:docsnippets && pnpm build:testapps",
"build:libs": "pnpm build:core && pnpm build:genkit && pnpm build:noncore ",
"build:core": "pnpm -r --workspace-concurrency 1 -F core -F ai -F flow build",
"build:genkit": "pnpm -F genkit build",
"build:noncore": "pnpm -r --workspace-concurrency -1 -F \"./plugins/**\" build",
"build:testapps": "pnpm -r --workspace-concurrency -1 -F \"./testapps/**\" build",
"build:docsnippets": "cd doc-snippets && pnpm install && pnpm build",
"pack:all": "(mkdir ../dist || true) && npm-run-all pack:core pack:ai pack:genkit pack:plugins",
"pack:core": "cd core && pnpm pack --pack-destination ../../dist",
"pack:ai": "cd ai && pnpm pack --pack-destination ../../dist",
"pack:genkit": "cd genkit && pnpm pack --pack-destination ../../dist",
"pack:plugins": "for i in plugins/*/; do cd $i && pnpm pack --pack-destination ../../../dist && cd ../..; done",
"test:all": "pnpm -r --workspace-concurrency -1 -F \"./(ai|core|plugins|genkit)/**\" test && pnpm test:esm",
"test:esm": "cd testapps/esm && pnpm test",
"gendocs": "pnpm build && pnpm typedoc",
"typedoc-html": "typedoc --sortEntryPoints false --options typedoc.json"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"only-allow": "^1.2.1",
"tsx": "^4.20.3",
"typedoc": "^0.27.9",
"typedoc-github-theme": "^0.2.1",
"typedoc-plugin-markdown": "^4.6.4",
"typedoc-plugin-zod": "^1.4.2",
"typescript": "^4.9.5"
},
"pnpm": {
"overrides": {
"cross-spawn": "^7.0.5",
"@genkit-ai/vertexai>@anthropic-ai/sdk": "^0.24.3",
"@anthropic-ai/vertex-sdk>@anthropic-ai/sdk": "^0.24.3",
"@genkit-ai/anthropic>@anthropic-ai/sdk": "^0.71.2"
}
},
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b"
}