-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "prisma-cli",
"version": "8.0.0-rc.15",
"private": true,
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.6.0",
"scripts": {
"build": "turbo run build",
"build:cli": "turbo run build --filter=@prisma/cli",
"build:compute": "pnpm --filter @prisma/compute build",
"check:grammar": "turbo run check:grammar",
"check:error-reference": "node scripts/list-error-codes.mjs --verify docs/reference/error-reference.md",
"check:skill-packaging": "node scripts/check-skill-packaging.mjs",
"format": "biome format . --write",
"lint": "biome check . --error-on-warnings",
"lint:fix": "biome check . --write",
"bump-version": "node scripts/bump-version.ts",
"test": "turbo run test",
"test:scripts": "node --test scripts/determine-version-utils.test.ts scripts/set-version-utils.test.ts scripts/bump-cli-engine-version-utils.test.ts scripts/resolve-package-version.test.mjs scripts/update-product-versions.test.mjs scripts/verify-published.test.mjs",
"typecheck": "turbo run typecheck",
"prisma-cli": "tsx packages/cli/src/bin.ts",
"prisma": "tsx packages/cli/src/bin.ts",
"check:conformance": "turbo run conformance",
"bump-cli-engine-version": "node scripts/bump-cli-engine-version.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"pkg-pr-new": "^0.0.75",
"tsx": "^4.22.4",
"turbo": "^2.10.9"
}
}