-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 929 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 929 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
30
31
32
33
34
35
{
"name": "prism",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm --parallel run dev",
"build": "pnpm --parallel run build",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write --unsafe .",
"prepare": "husky install",
"deploy": "pnpm --parallel run deploy",
"ci": "pnpm install --frozen-lockfile"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json}": [
"pnpm format",
"pnpm lint:fix"
]
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@types/node": "20.11.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2"
},
"dependencies": {
"zod": "^4.0.14"
}
}