-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 854 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 854 Bytes
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
{
"name": "a11y-patterns",
"version": "0.1.0",
"description": "Copy-paste accessible UI patterns with annotated before/after code, WCAG context, and automated axe tests.",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"new-pattern": "node scripts/new-pattern.js",
"validate-tokens": "node scripts/validate-tokens.js",
"build": "node scripts/build-site.js"
},
"devDependencies": {
"@axe-core/playwright": "^4.9.1",
"@clack/prompts": "^0.7.0",
"axe-core": "^4.9.1",
"playwright": "^1.44.1",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"accessibility",
"a11y",
"wcag",
"patterns",
"aria",
"screen-reader"
],
"license": "MIT",
"dependencies": {
"gray-matter": "^4.0.3",
"marked": "^18.0.0"
}
}