-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 920 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 920 Bytes
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
{
"name": "neko-blog",
"version": "1.0.0",
"description": "",
"author": "eko",
"license": "MIT",
"type": "module",
"engines": {
"node": "25.0.0"
},
"scripts": {
"start": "npx @11ty/eleventy --serve",
"dev": "npm run start",
"fonts": "node scripts/generate-font-css.mjs",
"prestart": "npm run fonts",
"prebuild": "npm run fonts",
"build": "npx @11ty/eleventy",
"clean": "rm -rf output",
"deploy": "npm run build && gh-pages -d output"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"gh-pages": "^6.0.0",
"globby": "^15.0.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-footnote": "^4.0.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mathjax3": "^5.2.0"
},
"dependencies": {
"@callmebill/lxgw-wenkai-web": "^1.521.0",
"@chinese-fonts/maple-mono-cn": "^2.0.0"
}
}