-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.28 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
{
"name": "accessready",
"version": "0.1.0",
"private": true,
"description": "A Section 508 preflight and remediation assistant for communications teams.",
"license": "MIT",
"type": "module",
"workspaces": [
"apps/web",
"packages/core",
"packages/cli"
],
"scripts": {
"build": "npm run build -w @accessready/core && npm run build -w @accessready/cli && npm run build -w @accessready/web",
"dev": "npm run dev -w @accessready/web",
"accessready": "node packages/cli/dist/cli.js",
"scan:samples": "npm run accessready -- scan samples --format markdown --out samples/generated-accessready-report.md",
"evidence:samples": "npm run accessready -- scan samples --format evidence-pack --out samples/sample-evidence-pack.md --project-name \"NIH-webinar-promo-package\" --ignore \"**/generated-*\"",
"typecheck": "npm run typecheck -w @accessready/core && npm run typecheck -w @accessready/cli && npm run typecheck -w @accessready/web",
"test": "npm run build -w @accessready/core && node --test packages/core/test/",
"clean": "rm -rf packages/*/dist apps/web/dist"
},
"keywords": [
"section-508",
"accessibility",
"wcag",
"a11y",
"pdf-accessibility",
"communications",
"remediation"
],
"engines": {
"node": ">=20"
}
}