-
Notifications
You must be signed in to change notification settings - Fork 383
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.24 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.24 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
{
"name": "wcag",
"private": true,
"version": "0.1.0",
"description": "Web Content Accessibility Guidelines",
"type": "module",
"scripts": {
"build": "tsx node_modules/@11ty/eleventy/cmd.cjs --config=eleventy.config.ts",
"check": "tsc",
"cspell": "cspell .",
"fmt": "prettier . -w",
"changelog": "tsx 11ty/generate-techniques-changelog-data.ts",
"publish-w3c": "npm run changelog && WCAG_VERSION=22 WCAG_JSON=1 WCAG_MODE=publication npm run build && tsx 11ty/cp-cvs.ts",
"publish-w3c:21": "npm run changelog && WCAG_VERSION=21 WCAG_JSON=1 WCAG_MODE=publication npm run build && WCAG_VERSION=21 tsx 11ty/cp-cvs.ts",
"start": "tsx watch node_modules/@11ty/eleventy/cmd.cjs --config=eleventy.config.ts --serve --incremental"
},
"author": "W3C",
"license": "W3C",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@sindresorhus/slugify": "^2.2.1",
"cheerio": "^1.0.0",
"glob": "^10.5.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"liquidjs": "^10.25.0",
"lodash-es": "^4.17.23",
"tsx": "^4.20.3"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.12",
"cspell": "^9.2.1",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
}
}