107 lines
2.9 KiB
JSON
107 lines
2.9 KiB
JSON
{
|
|
"name": "@prisma/dev",
|
|
"version": "0.24.3",
|
|
"description": "A local Prisma Postgres server for development and testing",
|
|
"type": "module",
|
|
"author": "Igal Klebanov <igalklebanov@gmail.com> (https://github.com/igalklebanov)",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"./internal/daemon": {
|
|
"import": {
|
|
"types": "./dist/daemon.d.ts",
|
|
"default": "./dist/daemon.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/daemon.d.cts",
|
|
"default": "./dist/daemon.cjs"
|
|
}
|
|
},
|
|
"./internal/db": {
|
|
"import": {
|
|
"types": "./dist/db.d.ts",
|
|
"default": "./dist/db.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/db.d.cts",
|
|
"default": "./dist/db.cjs"
|
|
}
|
|
},
|
|
"./internal/state": {
|
|
"import": {
|
|
"types": "./dist/state.d.ts",
|
|
"default": "./dist/state.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/state.d.cts",
|
|
"default": "./dist/state.cjs"
|
|
}
|
|
}
|
|
},
|
|
"keywords": [
|
|
"prisma",
|
|
"postgres",
|
|
"accelerate",
|
|
"local",
|
|
"development",
|
|
"dev",
|
|
"testing"
|
|
],
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@arethetypeswrong/cli": "0.18.2",
|
|
"@types/node": "25.0.9",
|
|
"@types/pako": "2.0.4",
|
|
"@types/pg": "8.15.6",
|
|
"@types/proper-lockfile": "4.1.4",
|
|
"env-paths": "3.0.0",
|
|
"pg": "8.16.0",
|
|
"pkg-types": "2.3.0",
|
|
"tsup": "8.5.1",
|
|
"typescript": "5.9.3",
|
|
"vitest": "4.0.17",
|
|
"common-stuff": "^0.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@electric-sql/pglite": "0.4.1",
|
|
"@electric-sql/pglite-socket": "0.1.1",
|
|
"@electric-sql/pglite-tools": "0.3.1",
|
|
"@hono/node-server": "1.19.11",
|
|
"@prisma/get-platform": "7.2.0",
|
|
"@prisma/query-plan-executor": "7.2.0",
|
|
"@prisma/streams-local": "0.1.2",
|
|
"foreground-child": "3.3.1",
|
|
"get-port-please": "3.2.0",
|
|
"hono": "^4.12.8",
|
|
"http-status-codes": "2.3.0",
|
|
"pathe": "2.0.3",
|
|
"proper-lockfile": "4.1.2",
|
|
"remeda": "2.33.4",
|
|
"std-env": "3.10.0",
|
|
"valibot": "1.2.0",
|
|
"zeptomatch": "2.1.0"
|
|
},
|
|
"scripts": {
|
|
"build": "node ./scripts/generate-bun-runtime-assets.mjs && tsup && node ./scripts/generate-bun-runtime-assets.mjs --dist",
|
|
"check:exports": "attw . --pack --profile node16",
|
|
"dev": "node ./scripts/generate-bun-runtime-assets.mjs && tsup --watch",
|
|
"init": "node ./scripts/generate-bun-runtime-assets.mjs",
|
|
"lint": "eslint --fix .",
|
|
"test": "node ./scripts/generate-bun-runtime-assets.mjs && vitest run",
|
|
"typecheck": "node ./scripts/generate-bun-runtime-assets.mjs && tsc --noEmit"
|
|
}
|
|
} |