-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (20 loc) · 744 Bytes
/
package.json
File metadata and controls
21 lines (20 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "mktba",
"version": "1.0.0",
"private": true,
"description": "Static Arabic digital library with catalog and reader experience.",
"type": "module",
"scripts": {
"sitemap:build": "node scripts/generate-sitemaps.mjs",
"check:js": "node scripts/check-js-syntax.mjs",
"check:imports": "node scripts/check-imports.mjs",
"check:books": "node scripts/validate-books.mjs",
"check:shell": "node scripts/validate-shell.mjs",
"check:policy": "node scripts/enforce-no-legacy-features.mjs",
"check": "npm run check:js && npm run check:imports && npm run check:books && npm run check:shell && npm run check:policy",
"test": "node scripts/run-unit-tests.mjs"
},
"engines": {
"node": ">=20"
}
}