-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.31 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "6-second-scribbles",
"version": "0.2.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"prepare": "lefthook install",
"check": "pnpm run check:biome && pnpm run check:spelling && pnpm run check:markdown",
"check:biome": "biome check .",
"check:spelling": "pnpm exec cspell lint . --config .cspell.yml --gitignore --cache --cache-strategy content",
"check:markdown": "pnpm exec markdownlint-cli2 **/README.md",
"contracts:generate": "just generate-contracts",
"contracts:check": "node scripts/check-contracts.mjs",
"format": "biome check . --write"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@cspell/dict-es-es": "^3.0.8",
"@cspell/dict-fr-fr": "^2.3.2",
"cspell": "^9.8.0",
"lefthook": "^2.1.6",
"markdownlint-cli2": "^0.17.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook"
],
"overrides": {
"undici": "^7.28.0",
"fast-uri": "^3.1.2",
"ws": "^8.21.0",
"js-cookie": "^3.0.7",
"@babel/core": "^7.29.6",
"postcss": "^8.5.10",
"js-yaml": "^4.2.0",
"markdown-it": "^14.2.0",
"esbuild": "^0.28.1"
}
}
}