chatgpt-api/apps/gateway/package.json

53 wiersze
1.5 KiB
JSON
Czysty Zwykły widok Historia

2025-05-28 19:03:42 +00:00
{
2025-06-04 17:33:33 +00:00
"name": "gateway",
2025-05-28 19:03:42 +00:00
"private": true,
"version": "0.1.0",
2025-06-05 17:16:54 +00:00
"description": "Internal Agentic platform API gateway.",
2025-05-28 19:03:42 +00:00
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic-platform.git",
"directory": "apps/gateway"
},
"type": "module",
"source": "./src/worker.ts",
"exports": {
".": {
"import": "./src/worker.ts"
}
},
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"cf-clear-cache": "del .wrangler",
2025-05-28 19:03:42 +00:00
"clean": "del dist",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
2025-05-28 19:03:42 +00:00
},
"dependencies": {
"@agentic/json-schema": "workspace:*",
"@agentic/platform": "workspace:*",
2025-05-28 19:03:42 +00:00
"@agentic/platform-api-client": "workspace:*",
"@agentic/platform-core": "workspace:*",
"@agentic/platform-hono": "workspace:*",
2025-05-31 08:41:35 +00:00
"@agentic/platform-types": "workspace:*",
2025-05-28 19:03:42 +00:00
"@agentic/platform-validators": "workspace:*",
2025-05-29 19:49:19 +00:00
"@hono/zod-validator": "catalog:",
2025-05-31 10:50:24 +00:00
"@modelcontextprotocol/sdk": "catalog:",
2025-06-04 17:33:33 +00:00
"fast-content-type-parse": "catalog:",
2025-05-28 19:03:42 +00:00
"hono": "catalog:",
2025-06-03 16:12:50 +00:00
"ky": "catalog:",
2025-06-04 17:33:33 +00:00
"plur": "catalog:",
2025-05-28 19:03:42 +00:00
"type-fest": "catalog:"
},
"devDependencies": {
2025-06-04 17:33:33 +00:00
"@cloudflare/workers-types": "catalog:",
"@edge-runtime/vm": "catalog:",
2025-05-29 19:49:19 +00:00
"wrangler": "catalog:"
2025-05-28 19:03:42 +00:00
}
}