chatgpt-api/apps/api/package.json

66 wiersze
1.7 KiB
JSON
Czysty Zwykły widok Historia

{
"name": "agentic-platform-api",
"private": true,
"version": "0.1.0",
"description": "Agentic platform API.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic-platform.git",
"directory": "apps/api"
},
"type": "module",
"source": "./src/server.ts",
"types": "./dist/server.d.ts",
"bin": {
"agentic-platform-api": "./dist/server.js"
},
"exports": {
".": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"default": "./dist/server.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "del dist",
"test": "run-s test:*",
2025-04-24 22:37:04 +00:00
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/validators": "workspace:*",
"@fisch0920/drizzle-orm": "^0.43.5",
"@fisch0920/drizzle-zod": "^0.7.7",
"@google-cloud/logging": "^11.2.0",
2025-04-23 23:23:36 +00:00
"@hono/node-server": "^1.14.1",
"@hono/sentry": "^1.2.1",
"@hono/zod-openapi": "^0.19.5",
2025-04-22 23:57:59 +00:00
"@hono/zod-validator": "^0.4.3",
"@paralleldrive/cuid2": "^2.2.2",
"@sentry/node": "^9.14.0",
2025-04-22 23:57:59 +00:00
"@workos-inc/node": "^7.47.0",
"eventid": "^2.0.1",
2025-04-23 23:35:57 +00:00
"exit-hook": "catalog:",
2025-04-22 23:57:59 +00:00
"hono": "^4.7.7",
"jsonwebtoken": "^9.0.2",
"pino": "^9.6.0",
"pino-abstract-transport": "^2.0.0",
"postgres": "^3.4.5",
2025-04-23 23:35:57 +00:00
"restore-cursor": "catalog:",
"type-fest": "catalog:",
2025-04-24 00:21:23 +00:00
"zod": "catalog:",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.9"
}
}