2025-04-21 21:06:55 +00:00
|
|
|
{
|
|
|
|
|
"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",
|
2025-04-24 21:54:33 +00:00
|
|
|
"source": "./src/server.ts",
|
|
|
|
|
"types": "./dist/server.d.ts",
|
|
|
|
|
"bin": {
|
|
|
|
|
"agentic-platform-api": "./dist/server.js"
|
|
|
|
|
},
|
2025-04-21 21:06:55 +00:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2025-04-24 21:54:33 +00:00
|
|
|
"types": "./dist/server.d.ts",
|
|
|
|
|
"import": "./dist/server.js",
|
|
|
|
|
"default": "./dist/server.js"
|
2025-04-21 21:06:55 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"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 .",
|
2025-04-21 21:06:55 +00:00
|
|
|
"test:typecheck": "tsc --noEmit",
|
|
|
|
|
"test:unit": "vitest run"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-04-25 23:11:33 +00:00
|
|
|
"@agentic/validators": "workspace:*",
|
2025-04-27 10:51:22 +00:00
|
|
|
"@fisch0920/drizzle-orm": "^0.43.5",
|
|
|
|
|
"@fisch0920/drizzle-zod": "^0.7.7",
|
2025-04-24 21:54:33 +00:00
|
|
|
"@google-cloud/logging": "^11.2.0",
|
2025-04-23 23:23:36 +00:00
|
|
|
"@hono/node-server": "^1.14.1",
|
2025-04-24 21:54:33 +00:00
|
|
|
"@hono/sentry": "^1.2.1",
|
2025-04-25 23:11:33 +00:00
|
|
|
"@hono/zod-openapi": "^0.19.5",
|
2025-04-22 23:57:59 +00:00
|
|
|
"@hono/zod-validator": "^0.4.3",
|
2025-04-21 21:06:55 +00:00
|
|
|
"@paralleldrive/cuid2": "^2.2.2",
|
2025-04-24 21:54:33 +00:00
|
|
|
"@sentry/node": "^9.14.0",
|
2025-04-22 23:57:59 +00:00
|
|
|
"@workos-inc/node": "^7.47.0",
|
2025-04-24 21:54:33 +00:00
|
|
|
"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",
|
2025-04-21 21:06:55 +00:00
|
|
|
"jsonwebtoken": "^9.0.2",
|
2025-04-24 21:54:33 +00:00
|
|
|
"pino": "^9.6.0",
|
|
|
|
|
"pino-abstract-transport": "^2.0.0",
|
2025-04-21 21:06:55 +00:00
|
|
|
"postgres": "^3.4.5",
|
2025-04-23 23:35:57 +00:00
|
|
|
"restore-cursor": "catalog:",
|
2025-04-21 21:06:55 +00:00
|
|
|
"type-fest": "catalog:",
|
2025-04-24 00:21:23 +00:00
|
|
|
"zod": "catalog:",
|
|
|
|
|
"zod-validation-error": "^3.4.0"
|
2025-04-21 21:06:55 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-04-27 10:51:22 +00:00
|
|
|
"@types/jsonwebtoken": "^9.0.9"
|
2025-04-21 21:06:55 +00:00
|
|
|
}
|
|
|
|
|
}
|