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.

134 lines 3.82 kB
{ "version": "3.2.0-dev.36", "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": [ "orm", "prisma2", "prisma", "cli", "database", "sql", "postgresql", "mysql", "sqlite", "mariadb", "mssql", "typescript", "query-builder" ], "main": "build/index.js", "repository": "git@github.com:prisma/prisma.git", "homepage": "https://www.prisma.io", "author": "Tim Suchanek <suchanek@prisma.io>", "maintainers": [ "Tim Suchanek <suchanek@prisma.io>", "Joël Galeran <galeran@prisma.io>", "William Luke <luke@prisma.io>" ], "bugs": "https://github.com/prisma/prisma/issues", "license": "Apache-2.0", "engines": { "node": ">=12.6" }, "prisma": { "prismaCommit": "f6116b8c248fff66f07600d0c874e8b976adbd2a" }, "files": [ "README.md", "build", "install", "runtime/*.js", "runtime/*.d.ts", "runtime/utils", "runtime/dist", "prisma-client", "preinstall", "scripts/preinstall-entry.js", "scripts/install-entry.js" ], "pkg": { "assets": [ "build/**/*", "runtime/**/*", "prisma-client/**/*", "node_modules/@prisma/engines/**/*", "node_modules/@prisma/engines/*" ] }, "bin": { "prisma": "build/index.js", "prisma2": "build/index.js" }, "devDependencies": { "@prisma/client": "3.2.0-dev.36", "@prisma/debug": "3.2.0-dev.36", "@prisma/fetch-engine": "3.2.0-23.e80f22958574bd57ee5c4f141957d97836d88c6f", "@prisma/generator-helper": "3.2.0-dev.36", "@prisma/get-platform": "3.2.0-23.e80f22958574bd57ee5c4f141957d97836d88c6f", "@prisma/migrate": "3.2.0-dev.36", "@prisma/sdk": "3.2.0-dev.36", "@prisma/studio-server": "0.435.0", "@timsuchanek/copy": "1.4.5", "@types/jest": "27.0.2", "@types/rimraf": "3.0.2", "@types/ws": "8.2.0", "@typescript-eslint/eslint-plugin": "4.29.3", "@typescript-eslint/parser": "4.29.3", "chalk": "4.1.2", "checkpoint-client": "1.1.20", "dotenv": "10.0.0", "esbuild": "0.8.53", "escape-string-regexp": "4.0.0", "eslint": "7.32.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-eslint-comments": "3.2.0", "eslint-plugin-jest": "24.4.0", "eslint-plugin-prettier": "4.0.0", "execa": "5.1.1", "fast-deep-equal": "3.1.3", "fs-jetpack": "4.1.1", "get-port": "5.1.1", "global-dirs": "3.0.0", "indent-string": "4.0.0", "is-installed-globally": "0.4.0", "jest": "27.2.3", "line-replace": "2.0.1", "lint-staged": "11.1.2", "log-update": "4.0.0", "make-dir": "3.1.0", "node-fetch": "2.6.5", "open": "7.4.2", "pg": "8.7.1", "pkg-up": "3.1.0", "prettier": "2.3.2", "replace-string": "3.1.0", "resolve-pkg": "2.0.0", "rimraf": "3.0.2", "strip-ansi": "6.0.0", "tempy": "1.0.1", "ts-jest": "27.0.5", "typescript": "4.3.5" }, "dependencies": { "@prisma/engines": "3.2.0-23.e80f22958574bd57ee5c4f141957d97836d88c6f" }, "lint-staged": { "*.ts": [ "eslint", "prettier --write" ] }, "scripts": { "dev": "DEV=true node helpers/build.js", "build": "node helpers/build.js", "test": "jest --maxConcurrency=1 --verbose", "install": "node scripts/install-entry.js", "format": "prettier --write .", "lint": "eslint --cache --fix --ext .ts .", "lint-ci": "eslint --ext .ts .", "tsc": "tsc -d -p tsconfig.build.json && bash scripts/copy-runtime-dist.sh", "preinstall": "node scripts/preinstall-entry.js", "precommit": "lint-staged" } }