-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.1 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
{
"name": "eleventy-base-blog",
"version": "8.0.0",
"description": "A starter repository for a blog web site using the Eleventy site generator.",
"scripts": {
"build": "npx @11ty/eleventy --quiet",
"build-ghpages": "pnpm build_sub_domain_web_gpu && npx @11ty/eleventy --quiet",
"d": "npx @11ty/eleventy --serve --quiet --incremental",
"dev_": "pnpm build_sub_domain_web_gpu && npx @11ty/eleventy --serve --quiet --incremental",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"post": "node createPost.js",
"clear-db": "rm imageURL2base64Db.json",
"build_sub_domain_web_gpu": "pnpm run rid_web_gpu && pnpm --prefix ./sub_domains/web_gpu/ run build && cp -r ./sub_domains/web_gpu/dist ./content/sub_domains/web_gpu",
"rid_web_gpu": "rm -rf ./content/sub_domains/web_gpu"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-base-blog.git"
},
"author": {
"name": "zerozoo-a",
"email": "[email protected]",
"url": "https://zerozoo-a.github.io/"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"bugs": {
"url": "https://github.com/11ty/eleventy-base-blog/issues"
},
"homepage": "https://github.com/11ty/eleventy-base-blog#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "3.1.1",
"@11ty/eleventy-navigation": "latest",
"@11ty/eleventy-plugin-bundle": "1.0.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "latest",
"@quasibit/eleventy-plugin-schema": "^1.11.0",
"@types/node": "latest",
"luxon": "latest",
"markdown-it-anchor": "latest",
"nodemon": "latest"
},
"dependencies": {
"@iktakahiro/markdown-it-katex": "latest",
"@kevingimbel/eleventy-plugin-mermaid": "latest",
"dotenv": "latest",
"eleventy-plugin-toc": "latest",
"markdown-it": "latest",
"markdown-it-textual-uml": "0.14.0",
"mermaid": "10.6.0",
"sharp": "latest",
"vite": "^5.2.11"
}
}