chatgpt-api/stdlib/genkit/package.json

47 wiersze
1.0 KiB
JSON
Czysty Zwykły widok Historia

2024-08-04 05:18:08 +00:00
{
"name": "@agentic/genkit",
2025-06-29 11:15:52 +00:00
"version": "8.1.1",
2024-08-04 05:18:08 +00:00
"description": "Agentic adapter for the Firebase Genkit AI SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
"directory": "stdlib/genkit"
2024-08-04 05:18:08 +00:00
},
"type": "module",
"sideEffects": false,
"source": "./src/index.ts",
2025-06-29 07:08:53 +00:00
"types": "./dist/index.ts",
2024-08-04 05:18:08 +00:00
"exports": {
2025-06-29 07:08:53 +00:00
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
2024-08-04 05:18:08 +00:00
},
2025-06-29 07:08:53 +00:00
"files": [
"dist"
],
2024-08-04 05:18:08 +00:00
"scripts": {
2025-03-18 15:16:05 +00:00
"build": "tsup",
2024-08-04 05:18:08 +00:00
"clean": "del dist",
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/platform-tool-client": "workspace:*"
},
2024-08-04 05:18:08 +00:00
"peerDependencies": {
"genkit": "catalog:"
2024-08-04 05:18:08 +00:00
},
"devDependencies": {
"genkit": "catalog:"
2024-08-04 05:18:08 +00:00
},
"publishConfig": {
2025-06-29 07:08:53 +00:00
"access": "public"
2024-08-04 05:18:08 +00:00
}
}