-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.13 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@inclusive-design/responsible-ai",
"version": "2026.8.0",
"description": "Persons with disabilities experience both transformative benefits and significant risks from artificial intelligence. This resource covers opportunities, risks and mitigation strategies, along with risk examples in healthcare, education, employment and services.",
"main": "eleventy.config.js",
"type": "module",
"scripts": {
"build": "npm-run-all -l clean -s build:eleventy",
"build:eleventy": "eleventy",
"clean": "rimraf _site",
"debug": "DEBUG=Eleventy* eleventy",
"dev": "cross-env NODE_ENV=development eleventy --serve",
"lint": "run-s -l lint:*",
"lint:eslint": "eslint",
"lint:markdownlint": "markdownlint-cli2 \"**/*.md\"",
"lint:stylelint": "stylelint \"**/*.css\"",
"start": "npm-run-all -l clean -p dev",
"prepare": "husky",
"test": "node --test"
},
"author": "OCAD University <idrc@ocadu.ca>",
"license": "BSD-3-Clause",
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-fetch": "^5.1.1",
"@11ty/eleventy-navigation": "^1.0.0",
"@11ty/eleventy-plugin-vite": "^8.0.0",
"@11ty/font-awesome": "^1.0.1",
"@zachleat/filter-container": "nedatidrc/filter-container#feat/paginated-results",
"eleventy-plugin-fluid": "^3.2.0",
"eleventy-plugin-vento": "^5.0.0",
"i18n-js": "^4.5.3",
"infusion": "^4.8.0",
"lodash": "^4.18.1",
"markdown-it": "^15.0.0",
"rimraf": "^6.0",
"vite": "^8.0.14"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@inclusive-design/eslint-config": "^0.5.0",
"@inclusive-design/markdownlint-config": "^0.1.0",
"@inclusive-design/stylelint-config": "^0.1.0",
"@sugarcube-sh/cli": "^0.1.14",
"@sugarcube-sh/vite": "^0.1.15",
"cross-env": "^10.0.0",
"debug": "^4.3.5",
"eslint": "^10.2.1",
"husky": "^9.0.11",
"linkedom": "^0.18.6",
"lint-staged": "^17.0.0",
"markdownlint-cli2": "^0.23.0",
"npm-run-all2": "^9.0.0",
"pagefind": "^1.4.0"
},
"lint-staged": {
"*.css": [
"stylelint --fix"
],
"*.{cjs,js,json,mjs}": [
"eslint --fix"
],
"*.md": [
"eslint --fix",
"markdownlint-cli2 --fix"
]
}
}