2023-02-17 11:06:01 +01:00

117 lines
3.0 KiB
JSON

{
"version": "4.9.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": [
"orm",
"prisma2",
"prisma",
"cli",
"database",
"sql",
"postgresql",
"mysql",
"sqlite",
"mariadb",
"mssql",
"typescript",
"query-builder"
],
"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": ">=14.17"
},
"prisma": {
"prismaCommit": "8f8eb955f7d5a78a5ed1540ebd16b0dddacdf31b"
},
"files": [
"README.md",
"build",
"install",
"runtime/*.js",
"runtime/*.d.ts",
"runtime/utils",
"runtime/dist",
"runtime/llhttp",
"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/studio": "0.479.0",
"@prisma/studio-server": "0.479.0",
"@swc/core": "1.3.14",
"@swc/jest": "0.2.24",
"@types/debug": "4.1.7",
"@types/fs-extra": "9.0.13",
"@types/jest": "29.2.4",
"@types/rimraf": "3.0.2",
"chalk": "4.1.2",
"checkpoint-client": "1.1.21",
"debug": "4.3.4",
"dotenv": "16.0.3",
"esbuild": "0.15.13",
"execa": "5.1.1",
"fast-deep-equal": "3.1.3",
"fast-glob": "3.2.12",
"fs-extra": "11.1.0",
"fs-jetpack": "5.1.0",
"get-port": "5.1.1",
"global-dirs": "3.0.0",
"is-installed-globally": "0.4.0",
"jest": "29.3.1",
"jest-junit": "15.0.0",
"line-replace": "2.0.1",
"log-update": "4.0.0",
"node-fetch": "2.6.7",
"open": "7.4.2",
"pkg-up": "3.1.0",
"resolve-pkg": "2.0.0",
"rimraf": "3.0.2",
"strip-ansi": "6.0.1",
"ts-pattern": "4.0.5",
"typescript": "4.8.4",
"@prisma/client": "4.9.0",
"@prisma/debug": "4.9.0",
"@prisma/fetch-engine": "4.9.0",
"@prisma/generator-helper": "4.9.0",
"@prisma/get-platform": "4.9.0",
"@prisma/migrate": "4.9.0",
"@prisma/internals": "4.9.0"
},
"dependencies": {
"@prisma/engines": "4.9.0"
},
"sideEffects": false,
"scripts": {
"dev": "DEV=true node -r esbuild-register helpers/build.ts",
"build": "node -r esbuild-register helpers/build.ts",
"test": "jest --maxConcurrency=1 --verbose",
"install": "node scripts/install-entry.js",
"tsc": "tsc -d -p tsconfig.build.json",
"preinstall": "node scripts/preinstall-entry.js"
}
}