UNPKG

prisma

Version:

Prisma is an open-source database toolkit. It includes a JavaScript/TypeScript ORM for Node.js, migrations and a modern GUI to view and edit the data in your database. You can use Prisma in new projects or add it to an existing one.

202 lines • 5.44 kB
{ "version": "7.2.0", "name": "prisma", "description": "Prisma is an open-source database toolkit. It includes a JavaScript/TypeScript ORM for Node.js, migrations and a modern GUI to view and edit the data in your database. You can use Prisma in new projects or add it to an existing one.", "keywords": [ "CLI", "ORM", "Prisma", "Prisma CLI", "prisma2", "database", "db", "JavaScript", "JS", "TypeScript", "TS", "SQL", "SQLite", "pg", "Postgres", "PostgreSQL", "CockroachDB", "MySQL", "MariaDB", "MSSQL", "SQL Server", "SQLServer", "MongoDB", "MCP" ], "main": "build/index.js", "repository": { "type": "git", "url": "https://github.com/prisma/prisma.git", "directory": "packages/cli" }, "homepage": "https://www.prisma.io", "author": "Tim Suchanek <suchanek@prisma.io>", "bugs": "https://github.com/prisma/prisma/issues", "license": "Apache-2.0", "engines": { "node": "^20.19 || ^22.12 || >=24.0" }, "prisma": { "prismaCommit": "4fb55a9236b0d6a50bf287225b68cc38b1a7a155" }, "files": [ "README.md", "build", "config.js", "config.d.ts", "dist/cli/src/types.d.ts", "install", "runtime/*.js", "runtime/*.d.ts", "runtime/utils", "runtime/dist", "runtime/llhttp", "prisma-client", "preinstall", "scripts/preinstall-entry.js" ], "pkg": { "assets": [ "build/**/*", "runtime/**/*", "prisma-client/**/*", "node_modules/@prisma/engines/**/*", "node_modules/@prisma/engines/*" ] }, "bin": { "prisma": "build/index.js" }, "types": "./dist/cli/src/types.d.ts", "exports": { "./package.json": "./package.json", ".": { "require": { "types": "./dist/cli/src/types.d.ts", "default": "./build/types.js" }, "import": { "types": "./dist/cli/src/types.d.ts", "default": "./build/types.js" }, "default": "./build/types.js" }, "./config": { "require": { "types": "./config.d.ts", "default": "./config.js" }, "import": { "types": "./config.d.ts", "default": "./config.js" }, "default": "./config.js" }, "./build/index.js": { "require": { "types": "./dist/cli/src/types.d.ts", "default": "./build/index.js" }, "default": "./build/index.js" } }, "devDependencies": { "@hono/node-server": "1.19.0", "@inquirer/prompts": "7.3.3", "@libsql/client": "0.8.1", "@modelcontextprotocol/sdk": "1.13.2", "@opentelemetry/api": "1.9.0", "@opentelemetry/context-async-hooks": "2.1.0", "@opentelemetry/sdk-trace-base": "2.1.0", "@prisma/management-api-sdk": "0.2.0", "@swc/core": "1.11.5", "@swc/jest": "0.2.37", "@types/better-sqlite3": "7.6.12", "@types/fs-extra": "11.0.4", "@types/jest": "29.5.14", "@types/node": "~20.19.24", "async-listen": "3.1.0", "better-sqlite3": "^11.10.0", "checkpoint-client": "1.1.33", "chokidar": "4.0.3", "dotenv": "17.2.3", "effect": "3.18.4", "env-paths": "2.2.1", "execa": "5.1.1", "fs-extra": "11.3.0", "get-port-please": "3.2.0", "get-tsconfig": "4.10.0", "hono": "4.10.6", "jest": "29.7.0", "jest-junit": "16.0.0", "kleur": "4.1.5", "line-replace": "2.0.1", "log-update": "6.1.0", "node-fetch": "3.3.2", "npm-packlist": "5.1.3", "ohash": "2.0.11", "open": "8.4.2", "openapi-fetch": "0.15.0", "openapi-typescript": "7.10.1", "ora": "8.2.0", "package-up": "5.0.0", "pathe": "2.0.3", "resolve-pkg": "2.0.0", "std-env": "3.10.0", "strip-ansi": "7.1.0", "ts-pattern": "5.6.2", "typescript": "5.4.5", "xdg-app-paths": "8.3.0", "zod": "3.24.2", "@prisma/client-generator-registry": "7.2.0", "@prisma/adapter-libsql": "7.2.0", "@prisma/client": "7.2.0", "@prisma/credentials-store": "7.2.0", "@prisma/debug": "7.2.0", "@prisma/dmmf": "7.2.0", "@prisma/driver-adapter-utils": "7.2.0", "@prisma/fetch-engine": "7.2.0", "@prisma/generator": "7.2.0", "@prisma/get-platform": "7.2.0", "@prisma/internals": "7.2.0", "@prisma/migrate": "7.2.0" }, "dependencies": { "@prisma/dev": "0.17.0", "@prisma/studio-core": "0.9.0", "mysql2": "3.15.3", "postgres": "3.4.7", "@prisma/config": "7.2.0", "@prisma/engines": "7.2.0" }, "peerDependencies": { "better-sqlite3": ">=9.0.0", "typescript": ">=5.4.0" }, "peerDependenciesMeta": { "better-sqlite3": { "optional": true }, "typescript": { "optional": true } }, "sideEffects": false, "scripts": { "prisma": "tsx src/bin.ts", "platform": "tsx src/bin.ts platform --early-access", "pm": "tsx src/bin.ts platform --early-access", "dev": "DEV=true tsx helpers/build.ts", "build": "tsx helpers/build.ts", "generate-api-client": "openapi-typescript https://api.prisma.io/v1/doc --output ./src/management-api/openapi.d.ts && prettier --write ./src/management-api/openapi.d.ts", "test": "dotenv -e ../../.db.env -- tsx helpers/run-tests.ts", "test:platform": "dotenv -e ../../.db.env -- tsx helpers/run-tests.ts src/platform", "tsc": "tsc -d -p tsconfig.build.json", "preinstall": "node scripts/preinstall-entry.js" } }