-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.74 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@thegetty/quire-11ty",
"version": "1.0.0-rc.35",
"description": "Quire 11ty static site generator",
"keywords": [
"11ty",
"eleventy",
"quire"
],
"author": "Getty Digital",
"license": "SEE LICENSE IN https://github.com/thegetty/quire/blob/main/LICENSE",
"homepage": "https://github.com/thegetty/quire/tree/main/packages/11ty#readme",
"bugs": {
"url": "https://github.com/thegetty/quire/issues"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/thegetty/quire.git",
"directory": "packages/11ty"
},
"type": "module",
"main": ".eleventy.js",
"scripts": {
"benchmark": "cross-env DEBUG=Eleventy:Benchmark* eleventy",
"build": "cross-env ELEVENTY_ENV=production eleventy",
"clean": "del-cli _epub _site public",
"debug": "cross-env DEBUG=Eleventy* eleventy --dryrun",
"dev": "cross-env ELEVENTY_ENV=development eleventy --serve",
"lint": "eslint .",
"lint:debug": "eslint . --debug",
"lint:fix": "eslint . --fix",
"lint:inspect": "npx @eslint/config-inspector",
"prebuild": "npm run clean",
"predev": "del-cli public",
"prepublishOnly": "npm run test",
"preserve": "npm run clean",
"serve": "cross-env ELEVENTY_ENV=production eleventy --serve",
"test": "npm run lint && ava --verbose --timeout 360s _tests/* && node --test _plugins/figures/test/*.spec.js"
},
"imports": {
"#root/*": "./*",
"#includes/*": "./_includes/*",
"#layouts/*": "./_layouts/*",
"#lib/*": "./_lib/*",
"#plugins/*": "./_plugins/*"
},
"dependencies": {
"@iiif/helpers": "^1.3.1",
"bulma": "^0.9.3",
"fs": "^0.0.1-security",
"fs-extra": "^11.2.0",
"iiif-builder": "^1.0.7",
"lit": "^3.1.2",
"lunr": "^2.3.9",
"template-polyfill": "^2.0.0"
},
"devDependencies": {
"@11ty/eleventy": "<=3.1.0",
"@11ty/eleventy-fetch": "^5.1.0",
"@11ty/eleventy-img": "^6.0.1",
"@11ty/eleventy-navigation": "^1.0.1",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-vite": "^6.0.0",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"@11ty/eleventy-upgrade-help": "^3.0.1",
"@11ty/is-land": "^4.0.0",
"@citation-js/core": "^0.7.18",
"@citation-js/plugin-csl": "^0.7.18",
"@digirati/canvas-panel-web-components": "^1.0.70",
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.1.1",
"@iiif/parser": "^2.1.7",
"@iiif/vault": "^0.9.22",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"@sindresorhus/slugify": "^2.2.1",
"ajv": "^8.12.0",
"camelize": "^1.0.1",
"chalk": "^5.3.0",
"common-tags": "^2.0.0-alpha.1",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"exifr": "^7.1.3",
"globals": "^15.0.0",
"html-escape": "^2.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^24.0.0",
"json5": "^2.2.3",
"liquid-args": "^1.1.0",
"liquidjs": "^10.10.0",
"locale-en-us": "^0.0.2",
"loglevel": "^1.9.1",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"mime-types": "^2.1.35",
"module-alias": "^2.2.2",
"path": "^0.12.7",
"prettier": "^3.2.5",
"remove-markdown": "^0.5.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.70.0",
"sharp": "^0.33.2",
"toml": "^3.0.0"
},
"engines": {
"node": ">=22"
}
}