-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.61 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
{
"name": "starter-extended-blog",
"version": "10.0.0",
"description": "A starter repository for a blog web site using the Eleventy site generator.",
"type": "module",
"scripts": {
"clean": "shx rm -rf _site",
"build": "npm run clean && npx @11ty/eleventy && npx pagefind --site _site",
"build-nocolor": "npm run clean && cross-env NODE_DISABLE_COLORS=1 npx @11ty/eleventy",
"build-ghpages": "npm run clean && npx @11ty/eleventy --pathprefix=/starter-extended-blog/",
"start": "npx @11ty/eleventy --serve --quiet",
"start-ghpages": "npx @11ty/eleventy --pathprefix=/starter-extended-blog/ --serve --quiet",
"debug": "cross-env DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "cross-env DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "cross-env DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"format": "npx prettier --write .",
"deploy": "npm run build && git push origin main && gh-pages -d _site"
},
"repository": {
"type": "git",
"url": "git://github.com/GoogleChrome/starter-extended-blog.git"
},
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"contributors": [
{
"name": "Thomas Steiner",
"email": "tomac@google.com",
"url": "https://blog.tomayac.com/"
}
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"bugs": {
"url": "https://github.com/GoogleChrome/starter-extended-blog/issues"
},
"homepage": "https://github.com/GoogleChrome/starter-extended-blog#readme",
"devDependencies": {
"@11ty/eleventy": "^4.0.0-alpha.6",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"built-in-ai-skills-md-agent-md": "^1.4.0",
"cross-env": "^10.1.0",
"gh-pages": "^6.3.0",
"luxon": "^3.7.2",
"node-addon-api": "^8.8.0",
"node-gyp": "^12.4.0",
"prettier": "^3.8.4",
"prismjs": "^1.30.0",
"shx": "^0.4.0",
"zod": "^4.4.3",
"zod-validation-error": "^5.0.0"
},
"dependencies": {
"@zachleat/heading-anchors": "^1.0.5",
"browser-fs-access": "^0.38.0",
"built-in-ai-task-apis-polyfills": "^1.14.0",
"dompurify": "^3.4.9",
"eleventy-plugin-i18n": "^0.1.3",
"input-switch-polyfill": "^1.11.0",
"jszip": "^3.10.1",
"marked": "^18.0.5",
"pagefind": "^1.5.2",
"prompt-api-polyfill": "^1.19.0",
"turndown": "^7.2.4",
"xslt-polyfill": "^1.0.23"
}
}