-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
192 lines (192 loc) · 8.91 KB
/
package.json
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
"name": "@egeesin/pxl",
"version": "0.6.0",
"description": "An adjustable framework-ish static site theme with sensible defaults and nice looks.",
"type": "module",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egeesin/pxl.git"
},
"author": {
"name": "Ege Esin",
"email": "[email protected]",
"url": "https://egeesin.com/"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/egeesin/pxl/issues"
},
"funding": [
{
"type": "individual",
"url": "https://egeesin.com/donate"
},
{
"type": "patreon",
"url": "https://patreon.com/egeesin"
}
],
"homepage": "https://github.com/egeesin/pxl#readme",
"keywords": [
"css",
"html",
"theme",
"css-framework",
"customizable",
"11ty",
"SSG"
],
"browserslist": [
">= .5% and not dead and not op_mini all"
],
"packageManager": "[email protected]",
"outputDirectory": "dist",
"devCommand": "pnpm build",
"buildCommand": "pnpm build",
"installCommand": "pnpm i",
"framework": "eleventy",
"scripts": {
"start": "pnpm build && pnpm watch",
"clean": "pnpm exec rimraf {tmp,dist}/",
"mkdest": "mkdir -p {tmp,dist}/{static,plain} tmp/view dist/static/asset/font",
"build": "pnpm clean && pnpm mkdest && pnpm process && pnpm lint && pnpm optimize",
"process": "pnpm \"/^(copy|process|compress):.*/\"",
"copy:font": "pnpm exec cpy \"static/asset/font/**/*.woff2\" dist/static/asset/font/",
"copy:gif": "pnpm exec cpy \"static/asset/**/*.gif\" dist/static/asset/",
"copy:ss": "pnpm exec cpy \"static/screenshot.webp\" dist/ || true",
"copy:json": "pnpm exec cpy \"static/script/**/*.json\" dist/static/script/",
"copy:faviconsvg": "pnpm exec cpy \"static/favicon.svg\" dist/ || true",
"process:page:view": "pnpm exec eleventy --config=config/eleventy.js",
"process:page:plain": "pnpm exec posthtml \"plain/**/*.html\" \"!plain/_include/**/*.html\" -o tmp/ -a -c config/posthtml.json",
"process:style": "pnpm exec postcss \"static/style/index.css\" --config config/ --base static/style/ --dir tmp/static/style/",
"compress:icon": "svg-sprite \"static/icon/**/*.svg\" --config config/svgsprite.json && pnpm exec svgo -i tmp/pi.svg -o dist/ --config config/svgo-sprite.js && node config/task/cheerio-sprite.js",
"compress:favicon": "node config/task/sharp-favicon.js",
"compress:img": "node config/task/sharp-compress.js",
"compress:svg": "node config/task/svgo-compress.js",
"lint": "pnpm \"/^lint:.*/\"",
"lint:script": "pnpm exec biome check --apply static/script/ --config-path=config/ --log-kind=compact --skip-errors",
"lint:style": "pnpm exec stylelint \"tmp/static/style/**/*.css\" --config config/stylelint.json",
"lint:page:view": "pnpm exec html-validate \"tmp/view/**/*.html\" --config=config/html-validate.json",
"lint:page:plain": "pnpm exec html-validate \"tmp/plain/**/*.html\" --config=config/html-validate.json",
"clean:style": "pnpm exec purgecss --css \"tmp/static/style/**/*.css\" --content \"tmp/{view,plain}/**/*.html\" \"tmp/static/script/**/*.js\" -o \"tmp/static/style/\" --config config/purgecss.js",
"optimize": "pnpm \"/^optimize:.*/\"",
"optimize:style": "node config/task/postcss-extract-mq.js && node config/task/postcss-optimize.js",
"optimize:page:view": "pnpm exec posthtml \"**/*.{ht,x}ml\" -o dist/ -a -r tmp/view -c config/posthtml-optimize.json && cpy \"tmp/view/**/*.{txt,json,webmanifest}\" dist/ && cpy \"tmp/view/media/**/*\" dist/media/",
"optimize:page:plain": "pnpm exec posthtml \"plain/**/*.{ht,x}ml\" -o dist/ -a -r tmp/ -c config/posthtml-optimize.json",
"optimize:script:vendor": "pnpm exec node config/task/sharp-vendor.js",
"optimize:script": "pnpm exec swc static/script/ -d dist/ --config-file config/swc.json",
"watch": "pnpm --workspace-concurrency=10 \"/(^watch:.*|serve)/\"",
"serve": "pnpm exec eleventy --serve --dryrun --output=dist/ --config=config/eleventy.js",
"watch:page:view": "pnpm exec chokidar --silent \"view/**/*.{html,xml,liquid,md,json,js,jpg,jpeg,tif,png,webp,gif,webm,svg}\" \"config/{eleventy.js,posthtml-optimize.json}\" -c \"pnpm process:page:view; pnpm lint:page:view; pnpm optimize:page:view\"",
"watch:page:plain": "pnpm exec chokidar --silent \"plain/**/*.html\" \"config/{html-validate,posthtml,posthtml-optimize}.json\" -c \"pnpm process:page:plain; pnpm lint:page:plain; pnpm optimize:page:plain\"",
"watch:style": "pnpm exec chokidar \"static/style/**/*.css\" \"config/{postcss.config.js,purgecss.js,stylelint.json}\" \"config/task/{postcss-extract-mq,postcss-optimize}.js\" -c \"pnpm process:style; pnpm lint:style; pnpm optimize:style\"",
"watch:script": "pnpm exec chokidar \"static/script/**/*.js\" \"config/{biome,swc}.json\" -c \"pnpm lint:script; pnpm optimize:script\"",
"watch:img": "pnpm exec chokidar --silent \"static/asset/**/*.{jpeg,jpg,png,tif}\" \"config/task/sharp-compress.js\" -c \"pnpm compress:img\"",
"watch:svg": "pnpm exec chokidar --silent \"static/asset/**/*.svg\" \"config/{svgo.js,task/svgo-compress.js}\" -c \"pnpm compress:svg\"",
"watch:icon": "pnpm exec chokidar --silent \"static/icon/**/*.svg\" \"config/{svgo-sprite.js,svgsprite.js,task/cheerio-sprite.js}\" -c \"pnpm compress:icon\"",
"watch:favicon": "pnpm exec chokidar --silent \"static/favicon.*\" \"config/task/sharp-favicon.js\" -c \"pnpm compress:favicon\"",
"debug:11ty": "DEBUG=Eleventy* pnpm exec eleventy --dryrun --config=config/eleventy.js",
"debug:11tyall": "DEBUG=* pnpm exec eleventy --dryrun --config=config/eleventy.js",
"debug:11tybenchmark": "DEBUG=Eleventy:Benchmark* pnpm exec eleventy --dryrun --config=config/eleventy.js",
"debug:11tycache": "DEBUG=EleventyCacheAssets* pnpm exec eleventy --dryrun --config=config/eleventy.js",
"upmod": "pnpm up -i -L && pnpm exec update-browserslist-db"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-fetch": "^5.0.1",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@biomejs/biome": "1.9.4",
"@github/relative-time-element": "^4.4.3",
"@mightyplow/eleventy-plugin-cache-buster": "^1.1.3",
"@swc/cli": "^0.5.1",
"@swc/core": "^1.9.2",
"@traptitech/markdown-it-spoiler": "^1.1.6",
"@vrcd-community/markdown-it-video": "^1.1.1",
"@zachleat/webcare-webshare": "^1.0.3",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.2",
"caniuse-lite": "^1.0.30001683",
"cheerio": "1.0.0",
"chokidar-cli": "^3.0.0",
"cpy-cli": "^5.0.0",
"cssnano": "^7.0.6",
"dotenv": "^16.4.5",
"eleventy-plugin-target-safe": "^0.6.0",
"get-gravatar": "^5.0.0",
"glob": "^11.0.0",
"html-validate": "^8.25.0",
"htmlnano": "^2.1.1",
"lodash.unionby": "^4.8.0",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-collapsible": "^2.0.2",
"markdown-it-container": "^4.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-eleventy-img": "^0.10.2",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-implicit-figures": "^0.12.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-kbd": "^2.2.2",
"markdown-it-mark": "^4.0.0",
"markdown-it-multimd-table": "^4.2.3",
"markdown-it-named-code-blocks": "^1.0.6",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-table-of-contents": "^0.8.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-done-right": "^4.2.0",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-custom-media": "^11.0.5",
"postcss-extract-media-query": "^3.0.0",
"postcss-font-variant": "^5.0.0",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1",
"postcss-lightningcss": "^1.0.1",
"postcss-mixins": "^11.0.3",
"postcss-nested": "^7.0.2",
"postcss-obfuscator": "^1.6.1",
"postcss-pseudo-class-any-link": "^10.0.1",
"postcss-will-change": "^4.0.1",
"posthtml": "^0.16.6",
"posthtml-alt-always": "^1.0.1",
"posthtml-classes": "^0.2.1",
"posthtml-cli": "^0.10.0",
"posthtml-include": "^2.0.1",
"posthtml-lorem": "^1.0.0",
"posthtml-md": "^1.1.0",
"purgecss": "^7.0.2",
"rimraf": "^6.0.1",
"sanitize-html": "^2.13.1",
"sharp": "^0.33.5",
"sharp-ico": "^0.1.5",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"svg-sprite": "^2.0.4",
"svgo": "^3.3.2",
"terser": "^5.36.0",
"update-browserslist-db": "^1.1.1"
},
"dependencies": {
"colcade": "^0.2.0",
"drkmd-js": "^1.0.12",
"eleventy-nbsp-filter": "^0.1.0",
"sanitize.css": "^13.0.0"
},
"pnpm": {
"overrides": {
"marked@>=0.3.14 <0.6.2": ">=0.6.2",
"got@<11.8.5": ">=11.8.5",
"marked@<4.0.10": ">=4.0.10"
}
}
}