@genkit-ai/flow
Version:
Genkit AI framework workflow APIs.
88 lines • 2.08 kB
JSON
{
"name": "@genkit-ai/flow",
"description": "Genkit AI framework workflow APIs.",
"keywords": [
"genkit",
"ai",
"genai",
"generative-ai"
],
"version": "0.5.17",
"type": "commonjs",
"main": "./lib/cjs/index.js",
"repository": {
"type": "git",
"url": "https://github.com/firebase/genkit.git",
"directory": "js/flow"
},
"author": "genkit",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/firestore": "^7.6.0",
"@opentelemetry/api": "^1.9.0",
"@types/cors": "^2.8.17",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.0",
"firebase-admin": ">=12.2",
"firebase-functions": ">=4.8",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"@genkit-ai/core": "0.5.17"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/uuid": "^9.0.6",
"npm-run-all": "^4.1.5",
"tsup": "^8.0.2",
"typescript": "^4.9.0",
"tsx": "^4.7.1",
"@types/body-parser": "^1.19.5",
"rimraf": "^6.0.1"
},
"files": [
"genkit-ui",
"lib",
"src",
"*"
],
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/client/index.d.ts",
"require": "./lib/client/index.js",
"import": "./lib/client/index.mjs",
"default": "./lib/client/index.js"
},
"./experimental": {
"types": "./lib/experimental.d.ts",
"require": "./lib/experimental.js",
"import": "./lib/experimental.mjs",
"default": "./lib/experimental.js"
}
},
"typesVersions": {
"*": {
"experimental": [
"lib/experimental"
],
"client": [
"lib/client"
]
}
},
"scripts": {
"check": "tsc",
"compile": "tsup-node",
"build:clean": "rimraf ./lib",
"build": "npm-run-all build:clean check compile",
"build:watch": "tsup-node --watch",
"test": "node --import tsx --test tests/*_test.ts"
}
}