-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.41 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.41 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
{
"name": "Digital History Switzerland 2024",
"description": "This repository contains Book of Abstracts for the Digital History Switzerland 2024. Historical Research, Digital Literacy and Algorithmic Criticism.",
"author": "Moritz Mähr <digital-history-2024@unibas.ch>",
"url": "https://github.com/digihistch24/digihistch24.github.io/issues",
"license": "AGPL-3.0",
"scripts": {
"check": "prettier --ignore-path .gitignore --check . '!{CODE_OF_CONDUCT.md,LICENSE-AGPL.md,LICENSE-CCBYSA.md,fonts/LICENSE-OFL.md,package-lock.json,yarn.lock}'",
"commit": "cz",
"generate:llms": "uv run python scripts/generate-llms-txt.py",
"format": "prettier --ignore-path .gitignore --write . '!{CODE_OF_CONDUCT.md,LICENSE-AGPL.md,LICENSE-CCBYSA.md,fonts/LICENSE-OFL.md,package-lock.json,yarn.lock}'",
"preview": "uv run quarto preview",
"preview:rendered": "uv run python3 -m http.server 8000 --directory _site",
"prepare": "husky",
"render": "uv run quarto render",
"setup": "uv sync --group dev && npm install",
"changelog": "npm exec git-cliff -- --config cliff.toml"
},
"devDependencies": {
"commitizen": "^4.3.1",
"cz": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"git-cliff": "^2.12.0",
"husky": "^9.1.7",
"prettier": "^3.8.1"
},
"overrides": {
"lodash": "4.17.23",
"tmp": "0.2.5"
},
"type": "module",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}