2026-02-16 13:31:52 -06:00
|
|
|
{
|
2026-03-03 08:45:26 -06:00
|
|
|
"name": "@paperclipai/db",
|
2026-03-12 13:09:22 -05:00
|
|
|
"version": "0.3.1",
|
2026-03-17 15:55:14 -05:00
|
|
|
"license": "MIT",
|
|
|
|
|
"homepage": "https://github.com/paperclipai/paperclip",
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/paperclipai/paperclip/issues"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/paperclipai/paperclip",
|
|
|
|
|
"directory": "packages/db"
|
|
|
|
|
},
|
2026-02-16 13:31:52 -06:00
|
|
|
"type": "module",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./src/index.ts",
|
|
|
|
|
"./*": "./src/*.ts"
|
|
|
|
|
},
|
2026-03-03 14:46:16 -06:00
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./*": {
|
|
|
|
|
"types": "./dist/*.d.ts",
|
|
|
|
|
"import": "./dist/*.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
2026-02-16 13:31:52 -06:00
|
|
|
"scripts": {
|
2026-04-02 11:38:57 -05:00
|
|
|
"check:migrations": "tsx src/check-migration-numbering.ts",
|
|
|
|
|
"build": "pnpm run check:migrations && tsc && cp -r src/migrations dist/migrations",
|
2026-03-03 14:46:16 -06:00
|
|
|
"clean": "rm -rf dist",
|
2026-04-02 11:38:57 -05:00
|
|
|
"typecheck": "pnpm run check:migrations && tsc --noEmit",
|
|
|
|
|
"generate": "pnpm run check:migrations && tsc -p tsconfig.json && drizzle-kit generate",
|
|
|
|
|
"migrate": "pnpm run check:migrations && tsx src/migrate.ts",
|
2026-02-16 13:31:52 -06:00
|
|
|
"seed": "tsx src/seed.ts"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-03-03 08:45:26 -06:00
|
|
|
"@paperclipai/shared": "workspace:*",
|
2026-05-09 21:31:57 -07:00
|
|
|
"drizzle-orm": "^0.45.2",
|
2026-03-13 20:56:19 -05:00
|
|
|
"embedded-postgres": "^18.1.0-beta.16",
|
2026-02-16 13:31:52 -06:00
|
|
|
"postgres": "^3.4.5"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-03-05 12:39:37 -03:00
|
|
|
"@types/node": "^24.6.0",
|
2026-02-16 19:07:37 -06:00
|
|
|
"drizzle-kit": "^0.31.9",
|
2026-02-16 13:31:52 -06:00
|
|
|
"tsx": "^4.19.2",
|
|
|
|
|
"typescript": "^5.7.3",
|
|
|
|
|
"vitest": "^3.0.5"
|
|
|
|
|
}
|
|
|
|
|
}
|