-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.73 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.73 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
{
"private": "true",
"devDependencies": {
"@mdit/plugin-icon": "^0.24.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-kbd": "^3.0.0",
"vitepress": "^1.6.3",
"vitepress-plugin-tabs": "^0.8.0",
"vitepress-sidebar": "^1.31.1",
"yaml": "^2.7.0"
},
"scripts": {
"dev": "vitepress dev",
"lint": "pnpm lint:cmd \"src/en/**/*.md\"",
"lint:fix": "pnpm lint --fix",
"lint:cmd": "docker run -v $PWD:/workdir --rm --pull=always davidanson/markdownlint-cli2:latest",
"i18n": ".gitlab/update_po4a_conf.sh && po4a --verbose .po4a.conf && pnpm run build-language-config-json-files && pnpm run reset-po-changes",
"build": "vitepress build",
"preview": "vitepress preview",
"build-language-config-json-files": "(cd .vitepress; for FILE in *.yaml; do npx yaml < $FILE --json --single > $FILE.json; done)",
"reset-po-changes": "echo 'Only weblate may update .po files, reverting any changes.' && git restore i18n/*.po",
"screenshots:install": "pnpm --dir ./.screenshots install --frozen-lockfile",
"screenshots:dev": "pnpm --dir ./.screenshots dev --e2e",
"screenshots:build": "pnpm --dir ./.screenshots build",
"screenshots:start-stack": ".screenshots/zammad-stack/start.sh",
"screenshots:stop-stack": ".screenshots/zammad-stack/stop.sh",
"prepare": "husky"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"pnpm": {
"neverBuiltDependencies": []
},
"lint-staged": {
"./src/en/**/*.md": "pnpm lint:cmd"
},
"dependencies": {
"cypress": "^13.17.0"
}
}