104 lines
2.5 KiB
JSON
104 lines
2.5 KiB
JSON
{
|
|
"name": "@prisma/dev",
|
|
"version": "0.20.0",
|
|
"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/proper-lockfile": "4.1.4",
|
|
"env-paths": "3.0.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.3.15",
|
|
"@electric-sql/pglite-socket": "0.0.20",
|
|
"@electric-sql/pglite-tools": "0.2.20",
|
|
"@hono/node-server": "1.19.9",
|
|
"@mrleebo/prisma-ast": "0.13.1",
|
|
"@prisma/get-platform": "7.2.0",
|
|
"@prisma/query-plan-executor": "7.2.0",
|
|
"foreground-child": "3.3.1",
|
|
"get-port-please": "3.2.0",
|
|
"hono": "4.11.4",
|
|
"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": "tsup",
|
|
"check:exports": "attw . --pack --profile node16",
|
|
"dev": "tsup --watch",
|
|
"lint": "eslint --fix .",
|
|
"test": "",
|
|
"typecheck": "tsc --noEmit"
|
|
}
|
|
} |