mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
6914a1cb69
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
76 lines
1.9 KiB
JSON
76 lines
1.9 KiB
JSON
{
|
|
"name": "@workflow/world-postgres",
|
|
"version": "4.3.6",
|
|
"description": "A reference World implementation based on PostgreSQL",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"bootstrap": "./bin/setup.js",
|
|
"workflow-postgres-setup": "./bin/setup-deprecated.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"src/drizzle/migrations"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vercel/workflow.git",
|
|
"directory": "packages/world-postgres"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./schema": {
|
|
"types": "./dist/drizzle/schema.d.ts",
|
|
"default": "./dist/drizzle/schema.js"
|
|
},
|
|
"./cli": {
|
|
"types": "./dist/cli.d.ts",
|
|
"default": "./dist/cli.js"
|
|
},
|
|
"./migrations/*.sql": "./src/drizzle/migrations/*.sql"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && chmod +x bin/setup.js bin/setup-deprecated.js",
|
|
"dev": "tsc --watch",
|
|
"clean": "tsc --build --clean && rm -rf dist",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit",
|
|
"db:push": "node dist/cli.js"
|
|
},
|
|
"dependencies": {
|
|
"@vercel/queue": "catalog:",
|
|
"@workflow/errors": "workspace:*",
|
|
"@workflow/utils": "workspace:*",
|
|
"@workflow/world": "workspace:*",
|
|
"@workflow/world-local": "workspace:*",
|
|
"cbor-x": "1.6.0",
|
|
"dotenv": "17.3.1",
|
|
"drizzle-orm": "0.45.2",
|
|
"graphile-worker": "0.16.6",
|
|
"pg": "8.20.0",
|
|
"ulid": "catalog:",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@testcontainers/postgresql": "11.12.0",
|
|
"@types/node": "catalog:",
|
|
"@types/pg": "8.20.0",
|
|
"@workflow/errors": "workspace:*",
|
|
"@workflow/tsconfig": "workspace:*",
|
|
"@workflow/world-testing": "workspace:*",
|
|
"drizzle-kit": "0.31.9",
|
|
"vitest": "catalog:"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"packageManager": "pnpm@10.15.1"
|
|
}
|