kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
70 wiersze
1.8 KiB
JSON
70 wiersze
1.8 KiB
JSON
{
|
|
"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:*",
|
|
"test:lint": "eslint .",
|
|
"test:typecheck": "tsc --noEmit",
|
|
"test:unit": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@agentic/validators": "workspace:*",
|
|
"@fisch0920/drizzle-orm": "^0.43.7",
|
|
"@fisch0920/drizzle-zod": "^0.7.9",
|
|
"@google-cloud/logging": "^11.2.0",
|
|
"@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",
|
|
"@sentry/node": "^9.19.0",
|
|
"bcryptjs": "^3.0.2",
|
|
"eventid": "^2.0.1",
|
|
"exit-hook": "catalog:",
|
|
"hono": "^4.7.9",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"p-all": "^5.0.0",
|
|
"pino": "^9.6.0",
|
|
"pino-abstract-transport": "^2.0.0",
|
|
"postgres": "^3.4.5",
|
|
"restore-cursor": "catalog:",
|
|
"stripe": "^18.1.0",
|
|
"type-fest": "catalog:",
|
|
"zod": "catalog:",
|
|
"zod-validation-error": "^3.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^9.0.9",
|
|
"drizzle-kit": "^0.31.1",
|
|
"drizzle-orm": "^0.43.1"
|
|
}
|
|
}
|