-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.64 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.64 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
{
"name": "naif-website",
"private": true,
"description": "NAIF project website (Quarto)",
"scripts": {
"changelog": "npm exec git-cliff -- --config cliff.toml",
"check": "prettier --check .",
"commit": "cz",
"deploy": "npm run render && npm run jampack && npm run publish",
"docx": "uv run quarto render --profile docx",
"format": "prettier --write .",
"jampack": "npx @divriots/jampack _site",
"lint": "uv run ruff check .",
"lint:fix": "uv run ruff check --fix .",
"lychee-check": "lychee --config .lycheerc.toml './*.md' './*.qmd' './posts/**/*.qmd' './events/**/*.qmd' './dashboards/**/*.qmd'",
"lychee-check:rendered": "lychee --offline --config .lycheerc.toml './_site/**/*.html'",
"prepare": "prek install",
"preview": "uv run quarto preview",
"publish": "PREK_ALLOW_NO_CONFIG=1 quarto publish gh-pages --no-render",
"render": "uv run quarto render",
"screenshot:clean": "node scripts/screenshot-clean.mjs",
"screenshot:install-browsers": "npx playwright install chromium",
"sync": "uv sync",
"test": "uv run pytest",
"test:cov": "uv run pytest --cov",
"typecheck": "uv run ty check",
"validate": "npm run check && npm run lint && npm run typecheck && npm run test && npm run render && npm run lychee-check:rendered"
},
"devDependencies": {
"@j178/prek": "^0.3.1",
"commitizen": "^4.3.1",
"cz": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"git-cliff": "^2.10.1",
"playwright": "^1.58.2",
"prettier": "^3.6.2"
},
"type": "module",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}