UNPKG

3.63 kBJSONView Raw
1{
2 "version": "2.20.1",
3 "name": "@prisma/cli",
4 "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.",
5 "keywords": [
6 "orm",
7 "prisma2",
8 "prisma",
9 "cli",
10 "database",
11 "sql",
12 "postgresql",
13 "mysql",
14 "sqlite",
15 "mariadb",
16 "mssql",
17 "typescript",
18 "query-builder"
19 ],
20 "main": "build/index.js",
21 "repository": "git@github.com:prisma/prisma.git",
22 "homepage": "https://www.prisma.io",
23 "author": "Tim Suchanek <suchanek@prisma.io>",
24 "maintainers": [
25 "Tim Suchanek <suchanek@prisma.io>",
26 "Joël Galeran <galeran@prisma.io>",
27 "William Luke <luke@prisma.io>"
28 ],
29 "bugs": "https://github.com/prisma/prisma/issues",
30 "license": "Apache-2.0",
31 "engines": {
32 "node": ">=10.4"
33 },
34 "prisma": {
35 "prismaCommit": "87d13fded344f1f387a8510f0fa23139444516c6"
36 },
37 "files": [
38 "README.md",
39 "build",
40 "install",
41 "runtime/*.js",
42 "runtime/*.d.ts",
43 "runtime/utils",
44 "runtime/dist",
45 "prisma-client",
46 "preinstall",
47 "scripts/preinstall-entry.js",
48 "scripts/install-entry.js"
49 ],
50 "pkg": {
51 "assets": [
52 "build/**/*",
53 "runtime/**/*",
54 "prisma-client/**/*",
55 "node_modules/@prisma/engines/**/*",
56 "node_modules/@prisma/engines/*"
57 ]
58 },
59 "bin": {
60 "prisma": "build/index.js",
61 "prisma2": "build/index.js"
62 },
63 "devDependencies": {
64 "@prisma/client": "0.0.0",
65 "@prisma/debug": "0.0.0",
66 "@prisma/fetch-engine": "0.0.0",
67 "@prisma/generator-helper": "0.0.0",
68 "@prisma/get-platform": "0.0.0",
69 "@prisma/migrate": "0.0.0",
70 "@prisma/sdk": "0.0.0",
71 "@prisma/studio": "0.365.0",
72 "@prisma/studio-server": "0.365.0",
73 "@timsuchanek/copy": "1.4.5",
74 "@types/jest": "26.0.22",
75 "@types/ws": "7.4.0",
76 "@typescript-eslint/eslint-plugin": "4.19.0",
77 "@typescript-eslint/parser": "4.19.0",
78 "chalk": "4.1.0",
79 "checkpoint-client": "1.1.19",
80 "dotenv": "8.2.0",
81 "esbuild": "0.8.53",
82 "escape-string-regexp": "4.0.0",
83 "eslint": "7.23.0",
84 "eslint-config-prettier": "8.1.0",
85 "eslint-plugin-eslint-comments": "3.2.0",
86 "eslint-plugin-jest": "24.3.2",
87 "eslint-plugin-prettier": "3.3.1",
88 "execa": "5.0.0",
89 "fast-deep-equal": "3.1.3",
90 "fs-jetpack": "4.1.0",
91 "get-port": "5.1.1",
92 "global-dirs": "3.0.0",
93 "indent-string": "4.0.0",
94 "is-installed-globally": "0.4.0",
95 "jest": "26.6.3",
96 "line-replace": "2.0.1",
97 "lint-staged": "10.5.4",
98 "log-update": "4.0.0",
99 "make-dir": "3.1.0",
100 "node-fetch": "2.6.1",
101 "open": "7.4.2",
102 "pg": "8.5.1",
103 "pkg": "4.5.1",
104 "pkg-up": "3.1.0",
105 "prettier": "2.2.1",
106 "replace-string": "3.1.0",
107 "resolve-pkg": "2.0.0",
108 "rimraf": "3.0.2",
109 "strip-ansi": "6.0.0",
110 "tempy": "1.0.1",
111 "ts-jest": "26.5.4",
112 "typescript": "4.2.3"
113 },
114 "scripts": {
115 "test:commands": "./fixtures/test.sh && jest --maxConcurrency=1",
116 "test-update": "pnpm run test:commands -- -u",
117 "test": "pnpm run test:commands",
118 "jest": "jest",
119 "install": "node scripts/install-entry.js",
120 "format": "prettier --write .",
121 "lint": "eslint --cache --fix --ext .ts .",
122 "lint-ci": "eslint --ext .ts .",
123 "tsc": "tsc -d -p tsconfig.build.json && bash scripts/copy-runtime-dist.sh",
124 "build": "node helpers/build.js",
125 "pkg": "pkg . -o pkg-build",
126 "prepublishOnly": "pnpm run build",
127 "preinstall": "node scripts/preinstall-entry.js",
128 "precommit": "lint-staged"
129 },
130 "dependencies": {
131 "@prisma/engines": "2.20.0-26.60ba6551f29b17d7d6ce479e5733c70d9c00860e"
132 },
133 "lint-staged": {
134 "*.ts": [
135 "eslint",
136 "prettier --write"
137 ]
138 }
139}