{ "name": "api", "private": true, "version": "0.1.0", "description": "Internal Agentic platform API service.", "author": "Travis Fischer ", "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", "exports": { ".": { "import": "./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": "node dist/server.js", "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:*", "@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:" } }