-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 834 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 834 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
{
"private": true,
"name": "zettel-monorepo",
"type": "module",
"scripts": {
"build": "pnpm -r --filter \"./packages/**\" --if-present build",
"test": "pnpm -r --filter \"./packages/**\" --if-present test",
"lint": "pnpm -r --filter \"./packages/**\" --if-present lint",
"format": "pnpm -r --filter \"./packages/**\" --if-present format",
"clean": "pnpm -r --filter \"./packages/**\" --if-present clean && rm -rf ./.env ./node_modules",
"----- CI ---- used to test the codebase on every commit": "",
"ci": "pnpm lint && pnpm build && pnpm test"
},
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=22",
"pnpm": ">=10 <11"
},
"devDependencies": {
"@changesets/cli": "^2.29.7"
},
"repository": {
"type": "git",
"url": "https://github.com/opral/zettel"
}
}