kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
64 wiersze
2.1 KiB
JSON
64 wiersze
2.1 KiB
JSON
{
|
|
"name": "api",
|
|
"private": true,
|
|
"version": "8.2.2",
|
|
"description": "Internal Agentic platform API service.",
|
|
"author": "Travis Fischer <travis@transitivebullsh.it>",
|
|
"license": "AGPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transitive-bullshit/agentic.git",
|
|
"directory": "apps/api"
|
|
},
|
|
"type": "module",
|
|
"source": "./src/server.ts",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "run-p dev:*",
|
|
"dev:server": "dotenvx run -- tsx src/server.ts",
|
|
"dev:stripe": "dotenvx run -- stripe listen --forward-to http://localhost:3001/v1/webhooks/stripe",
|
|
"prod": "run-p prod:*",
|
|
"prod:server": "dotenvx run -o -f .env.production -- tsx src/server.ts",
|
|
"prod:stripe": "dotenvx run -o -f .env.production -- stripe listen --forward-to http://localhost:3001/v1/webhooks/stripe",
|
|
"start": "tsx src/server.ts",
|
|
"drizzle-kit": "dotenvx run -- drizzle-kit",
|
|
"drizzle-kit:prod": "dotenvx run -o -f .env.production -- drizzle-kit",
|
|
"clean": "del dist",
|
|
"test": "run-s test:*",
|
|
"test:typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@agentic/platform": "workspace:*",
|
|
"@agentic/platform-core": "workspace:*",
|
|
"@agentic/platform-emails": "workspace:*",
|
|
"@agentic/platform-hono": "workspace:*",
|
|
"@agentic/platform-types": "workspace:*",
|
|
"@agentic/platform-validators": "workspace:*",
|
|
"@dicebear/collection": "catalog:",
|
|
"@dicebear/core": "catalog:",
|
|
"@fisch0920/drizzle-orm": "catalog:",
|
|
"@fisch0920/drizzle-zod": "catalog:",
|
|
"@hono/node-server": "catalog:",
|
|
"@hono/zod-openapi": "catalog:",
|
|
"@paralleldrive/cuid2": "catalog:",
|
|
"@sentry/node": "catalog:",
|
|
"bcryptjs": "catalog:",
|
|
"exit-hook": "catalog:",
|
|
"hono": "catalog:",
|
|
"ky": "catalog:",
|
|
"octokit": "catalog:",
|
|
"p-all": "catalog:",
|
|
"postgres": "catalog:",
|
|
"restore-cursor": "catalog:",
|
|
"semver": "catalog:",
|
|
"stripe": "catalog:",
|
|
"type-fest": "catalog:",
|
|
"zod-validation-error": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@types/semver": "catalog:",
|
|
"drizzle-kit": "catalog:",
|
|
"drizzle-orm": "catalog:"
|
|
}
|
|
}
|