-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.69 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
{
"name": "ciccarello.me",
"version": "1.0.0",
"description": "Anthony Ciccarello's personal website",
"scripts": {
"start": "TZ=utc eleventy --serve",
"start:netlify": "netlify serve",
"clean": "rm -rf _site temp",
"build": "npm run clean && TZ=utc eleventy && npm run build:search",
"build:as-previous": "rm -rf _site_previous && npm run build && mv _site _site_previous",
"build:netlify": "netlify build",
"build:search": "pagefind --site _site",
"diff": "git diff --no-index --ignore-all-space --ignore-blank-lines _site_previous/ _site/ -- . ':(exclude)pagefind/fragment/**'",
"diff:filenames": "npm run diff -- --name-status",
"bd": "npm run build && npm run diff",
"now": "node -e 'console.log(new Date().toISOString())'",
"import:reads": "node _build/scripts/import-openlibrary-reads.js",
"compress:embed": "npx @squoosh/cli --resize '{\"enabled\":true,\"width\":341,\"height\":256,\"method\":\"lanczos3\",\"fitMethod\":\"stretch\",\"premultiply\":true,\"linearRGB\":true}' --mozjpeg '{\"quality\":75,\"baseline\":false,\"arithmetic\":false,\"progressive\":true,\"optimize_coding\":true,\"smoothing\":0,\"color_space\":3,\"quant_table\":3,\"trellis_multipass\":false,\"trellis_opt_zero\":false,\"trellis_opt_table\":false,\"trellis_loops\":1,\"auto_subsample\":true,\"chroma_subsample\":2,\"separate_chroma_quality\":false,\"chroma_quality\":75}' --output-dir ./assets/img",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:a11y": "pa11y-ci -c _build/tests/pa11y.cjs",
"webmention": "webmention https://www.ciccarello.me/feed.xml --send --debug --limit=1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aciccarello/ciccarello.me.git"
},
"keywords": [
"website",
"eleventy",
"blog"
],
"author": "Anthony Ciccarello",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/aciccarello/ciccarello.me/issues"
},
"homepage": "https://www.ciccarello.me",
"type": "module",
"dependencies": {
"@sveltia/cms": "^0.201.1",
"7.css": "^0.21.1",
"leaflet": "^1.9.4",
"webmention.js": "^0.5.6"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@11tyrocks/eleventy-plugin-lightningcss": "^1.5.0",
"@aciccarello/netlify-plugin-webmentions": "^3.0.0-beta.3",
"@paulrobertlloyd/mf2tojf2": "^3.0.0",
"dotenv": "^17.4.2",
"html-minifier-terser": "^7.2.0",
"jest": "^30.4.2",
"lint-staged": "^17.3.0",
"markdown-it-anchor": "^9.2.1",
"markdown-it-attrs": "^5.0.1",
"markdown-it-cooklang": "^0.4.0",
"markdown-it-html5-media": "^0.8.0",
"markdown-it-image-figures": "^2.1.1",
"microformats-parser": "^2.0.6",
"node-fetch": "^3.3.2",
"node-html-parser": "^9.0.1",
"pagefind": "^1.5.2",
"prettier": "^3.9.6",
"rss-parser": "^3.13.0",
"slugify": "^1.6.9"
},
"optionalDependencies": {
"netlify-cli": "^27.4.0",
"pa11y-ci": "^4.1.1",
"sharp": "^0.35.4"
},
"overrides": {
"netlify-plugin-minify-html": {
"@node-minify/core": "^8.0.5"
},
"@aciccarello/netlify-plugin-webmentions": {
"minimist": "^0.2.4"
}
},
"jest": {
"coverageProvider": "v8",
"resetMocks": true,
"rootDir": "_build/tests",
"testMatch": [
"**/__tests__/**/*.?(m)[jt]s?(x)",
"**/?(*.)+(spec|test).?(m)[tj]s?(x)"
]
},
"lint-staged": {
"*.js": "prettier --write"
},
"prettier": {
"singleQuote": true
},
"allowScripts": {
"sharp@0.34.5": true,
"sharp@0.35.3": true,
"esbuild@0.28.1": true,
"@parcel/watcher@2.5.6": true,
"netlify-cli@27.3.0": true
}
}