chatgpt-api/apps/gateway/package.json

53 wiersze
2.0 KiB
JSON

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,
2025-07-18 17:51:30 +00:00
"version": "8.4.4",
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>",
2025-06-20 04:05:47 +00:00
"license": "AGPL-3.0",
2025-05-28 19:03:42 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
2025-05-28 19:03:42 +00:00
"directory": "apps/gateway"
},
"type": "module",
"source": "./src/worker.ts",
"scripts": {
"dev": "wrangler dev",
2025-06-29 08:40:45 +00:00
"deploy": "wrangler deploy --env production --outdir dist --upload-source-maps --var SENTRY_RELEASE:$(sentry-cli releases propose-version)",
2025-06-30 15:29:17 +00:00
"deploy:cf": "wrangler deploy --env production --outdir dist --upload-source-maps",
"cf-clear-cache": "del .wrangler",
2025-05-28 19:03:42 +00:00
"clean": "del dist",
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run",
2025-06-29 08:40:45 +00:00
"sentry:sourcemaps": "_SENTRY_RELEASE=$(sentry-cli releases propose-version) && sentry-cli releases new $_SENTRY_RELEASE --org=agentic-platform --project=gateway && sentry-cli sourcemaps upload --org=agentic-platform --project=gateway --release=$_SENTRY_RELEASE --strip-prefix 'dist/..' dist",
"postdeploy": "pnpm sentry:sourcemaps"
2025-05-28 19:03:42 +00:00
},
"dependencies": {
"@agentic/json-schema": "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:",
"@sentry/cloudflare": "catalog:",
2025-06-11 23:16:45 +00:00
"agents": "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-06-11 23:16:45 +00:00
"sort-keys": "catalog:",
"stripe": "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-06-11 23:16:45 +00:00
"@sentry/cli": "catalog:",
2025-05-29 19:49:19 +00:00
"wrangler": "catalog:"
2025-05-28 19:03:42 +00:00
}
2025-06-13 00:20:09 +00:00
}