-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 818 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 818 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
{
"name": "massimo",
"version": "1.2.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "pnpm -r --workspace-concurrency=1 --if-present test",
"test:cleanup": "rm -vrf tmp packages/**/tmp",
"lint": "pnpm -r --workspace-concurrency=1 --if-present lint",
"lint:markdown": "markdownlint-cli2",
"lint:updated-only": "node ./scripts/lint-updated-packages.js",
"cleanall": "rm pnpm-lock.yaml && rm -rf node_modules && rm -rf packages/*/node_modules",
"clean": "rm -rf node_modules && rm -rf packages/*/node_modules"
},
"packageManager": "pnpm@9.15.9",
"devDependencies": {
"@fastify/pre-commit": "^2.2.0",
"markdownlint-cli2": "^0.18.1"
},
"pre-commit": "lint:updated-only",
"engines": {
"node": ">=22.18.0"
}
}