-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.39 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
{
"name": "unlimited-blog-works",
"version": "0.0.7",
"description": "A simple static blog generator for publishing on GitHub Pages",
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build-and-publish": "rm -rf ./dist && npm run build && npm publish",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"serve:docs": "npm run serve:docs:prepare && npm run serve:docs:run",
"serve:docs:prepare": "rm -rf ./test-serving && mkdir test-serving && cp -r docs test-serving/unlimited-blog-works",
"serve:docs:run": "serve test-serving",
"test": "jest",
"tsc": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjirou/unlimited-blog-works.git"
},
"keywords": [
"blog",
"static-site-generator",
"tool"
],
"author": "kjirou",
"license": "MIT",
"bugs": {
"url": "https://github.com/kjirou/unlimited-blog-works/issues"
},
"homepage": "https://github.com/kjirou/unlimited-blog-works#readme",
"engines": {
"node": ">=18",
"npm": ">=10"
},
"files": [
"LICENSE",
"README.md",
"bin",
"dist/src",
"package.json",
"presets"
],
"bin": {
"ubw": "bin/cli.js"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/klaw-sync": "^6.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^18.19.30",
"clear-module": "^4.1.2",
"jest": "^29.7.0",
"klaw-sync": "^6.0.0",
"prettier": "^3.2.5",
"serve": "^14.2.1",
"ts-jest": "^29.1.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"dependencies": {
"date-fns": "^1.30.1",
"date-fns-timezone": "^0.1.4",
"feed": "^4.2.2",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"minimist-subcommand": "^3.0.2",
"preact": "^10.20.1",
"preact-render-to-string": "^6.4.1",
"rehype-autolink-headings": "^2.0.5",
"rehype-document": "^3.0.1",
"rehype-format": "^2.3.2",
"rehype-parse": "^6.0.0",
"rehype-raw": "^4.0.1",
"rehype-slug": "^2.0.3",
"rehype-stringify": "^6.0.0",
"remark-frontmatter": "^1.3.2",
"remark-parse": "^6.0.3",
"remark-rehype": "^4.0.1",
"unified": "^7.1.0",
"unist-util-remove": "^1.0.3",
"unist-util-visit": "^1.4.1"
}
}