chatgpt-api/apps/api/package.json

63 wiersze
1.6 KiB
JSON
Czysty Zwykły widok Historia

{
2025-05-19 15:19:34 +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",
"source": "./src/server.ts",
"exports": {
".": {
2025-05-19 15:19:34 +00:00
"import": "./src/server.ts"
}
},
"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": {
2025-05-19 15:19:34 +00:00
"@agentic/platform-core": "workspace:*",
"@agentic/validators": "workspace:*",
"@fisch0920/drizzle-orm": "^0.43.7",
"@fisch0920/drizzle-zod": "^0.7.9",
2025-04-23 23:23:36 +00:00
"@hono/node-server": "^1.14.1",
"@hono/sentry": "^1.2.1",
"@hono/zod-openapi": "^0.19.6",
"@hono/zod-validator": "^0.5.0",
"@paralleldrive/cuid2": "^2.2.2",
2025-05-19 11:22:49 +00:00
"@redocly/openapi-core": "^1.34.3",
"@sentry/node": "^9.19.0",
2025-04-30 01:41:16 +00:00
"bcryptjs": "^3.0.2",
"eventid": "^2.0.1",
2025-04-23 23:35:57 +00:00
"exit-hook": "catalog:",
"hono": "^4.7.9",
"jsonwebtoken": "^9.0.2",
2025-05-05 15:45:01 +00:00
"p-all": "^5.0.0",
2025-05-19 11:22:49 +00:00
"parse-json": "^8.3.0",
"postgres": "^3.4.5",
2025-04-23 23:35:57 +00:00
"restore-cursor": "catalog:",
2025-05-18 18:36:04 +00:00
"semver": "^7.7.2",
2025-05-02 05:25:51 +00:00
"stripe": "^18.1.0",
"type-fest": "catalog:",
"zod-validation-error": "^3.4.1"
},
"devDependencies": {
2025-04-27 10:52:53 +00:00
"@types/jsonwebtoken": "^9.0.9",
2025-05-18 18:36:04 +00:00
"@types/semver": "^7.7.0",
"drizzle-kit": "^0.31.1",
2025-05-19 11:22:49 +00:00
"drizzle-orm": "^0.43.1",
"openapi-typescript": "^7.8.0"
}
}