package.json•1.44 kB
{
  "name": "@genkit-ai/express",
  "description": "Genkit AI framework plugin for Express server",
  "keywords": [
    "genkit",
    "genkit-plugin",
    "langchain",
    "ai",
    "genai",
    "generative-ai"
  ],
  "version": "1.22.0",
  "type": "commonjs",
  "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",
    "test:watch": "node --import tsx --watch --test tests/*_test.ts"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/firebase/genkit.git",
    "directory": "js/plugins/express"
  },
  "author": "genkit",
  "license": "Apache-2.0",
  "dependencies": {
    "cors": "^2.8.5",
    "body-parser": "^1.20.3"
  },
  "peerDependencies": {
    "genkit": "workspace:^",
    "express": "^4.21.1"
  },
  "devDependencies": {
    "get-port": "^5.1.0",
    "@types/cors": "^2.8.17",
    "@types/express": "^4.17.21",
    "@types/node": "^20.11.16",
    "@types/body-parser": "^1.19.5",
    "npm-run-all": "^4.1.5",
    "rimraf": "^6.0.1",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typescript": "^4.9.0"
  },
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "require": "./lib/index.js",
      "default": "./lib/index.js",
      "import": "./lib/index.mjs",
      "types": "./lib/index.d.ts"
    }
  }
}