-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 944 Bytes
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
{
"name": "prisma-cli",
"private": true,
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@11.6.0",
"scripts": {
"build:cli": "pnpm --filter @prisma/cli build",
"build:compute": "pnpm --filter @prisma/compute build",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"lint:skills": "node scripts/validate-skills.mjs",
"prepare": "skills add ./skills --skill '*' --agent universal claude-code -y",
"smoke:cli-nextjs": "node scripts/smoke-cli-nextjs-artifact.mjs",
"test:skills": "node --test scripts/validate-skills.test.mjs",
"test": "pnpm --filter @prisma/cli test",
"prisma-cli": "tsx packages/cli/src/bin.ts",
"prisma": "tsx packages/cli/src/bin.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"gray-matter": "^4.0.3",
"pkg-pr-new": "^0.0.75",
"skills": "^1.5.9",
"tsx": "^4.22.4"
}
}