-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.09 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
{
"name": "meshcore-canada-docs",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.19"
},
"scripts": {
"docs:build": "python -m mkdocs build --clean --strict --site-dir .tmp/site && node scripts/postprocess-site.mjs",
"docs:build:preview": "python -m mkdocs build --clean --strict --config-file mkdocs.preview.yml --site-dir .tmp/preview-site && node scripts/postprocess-site.mjs .tmp/preview-site --noindex-all",
"check:links": "npm run docs:build && node scripts/check-built-links.mjs",
"test:content": "node --test tests/content/*.test.mjs",
"test:editor": "node --test tests/editor/*.test.mjs",
"test:browser": "playwright test",
"test:browser:chromium": "playwright test --project=chromium",
"test:a11y": "playwright test tests/browser/accessibility.spec.mjs --project=chromium",
"audit:lighthouse": "npm run docs:build && node scripts/run-lighthouse.mjs"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@playwright/test": "1.61.1",
"chrome-launcher": "1.2.1",
"lighthouse": "13.4.1"
}
}