-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@shepherdjerred/monorepo",
"private": true,
"scripts": {
"build": "bun run scripts/run-package-script.ts build",
"test": "bun run scripts/run-package-script.ts test",
"typecheck": "bun run scripts/run-package-script.ts typecheck",
"lint": "bun run scripts/run-package-script.ts lint",
"knip": "knip --no-config-hints",
"markdownlint": "markdownlint-cli2 '**/*.md'",
"markdownlint:fix": "markdownlint-cli2 --fix '**/*.md'",
"guard:migration": "bun run scripts/guard-no-package-exclusions.ts",
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && lefthook install || true"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"knip": "6.14.2",
"markdownlint-cli2": "^0.22.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1"
}
}