-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.95 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
{
"name": "ecology-hub",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Ecology \u2014 the framework-agnostic design system hub (tokens + specs + Astro specimens).",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"test": "node --test 'scripts/**/*.test.mjs'",
"build:tokens": "npm run build --workspace=@esa/tokens",
"tokens:snapshot": "node scripts/snapshot-tokens.mjs --write",
"tokens:check": "node scripts/snapshot-tokens.mjs",
"dev": "npm run build:tokens && npm run dev --workspace=@esa/site",
"build": "npm run build:tokens && npm run build --workspace=@esa/site",
"preview": "npm run preview --workspace=@esa/site",
"deploy": "npm run build:tokens && npm run deploy --workspace=@esa/site",
"a11y": "node scripts/a11y-audit.mjs",
"a11y:live": "node scripts/live-region-audit.mjs",
"a11y:targets": "node scripts/check-target-size.mjs",
"a11y:charts": "node scripts/check-chart-a11y.mjs",
"a11y:assured": "node scripts/check-contrast.mjs --hub --assurance wcag-aa && node scripts/check-size-usage.mjs --dir apps/site/src --strict && node scripts/a11y-audit.mjs --strict && node scripts/live-region-audit.mjs --strict",
"contrast": "node scripts/check-contrast.mjs --hub",
"contrast:dark": "node scripts/check-contrast.mjs apps/site/src/styles/docs-dark.css --scheme dark",
"theme:make": "node scripts/make-theme.mjs",
"theme:check": "node scripts/check-themes.mjs",
"theme:curves": "node scripts/gen-radix-curves.mjs",
"tokens:primitives": "node scripts/gen-radix-primitives.mjs",
"a11y:sizes": "node scripts/check-size-usage.mjs --dir apps/site/src",
"a11y:floors": "node scripts/check-target-size.mjs --assurance wcag-aa --emit-floors packages/tokens/size-floors.json",
"a11y:overlays": "node scripts/check-overlay-focus.mjs"
},
"dependencies": {
"@radix-ui/colors": "^3.0.0"
},
"devDependencies": {
"axe-core": "^4.13.0"
}
}