chatgpt-api/apps/api/package.json

50 wiersze
1.1 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/index.ts",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.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": {
"@paralleldrive/cuid2": "^2.2.2",
"drizzle-orm": "^0.42.0",
"drizzle-zod": "^0.7.1",
"jsonwebtoken": "^9.0.2",
"postgres": "^3.4.5",
"type-fest": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.9",
"drizzle-kit": "^0.31.0"
}
}