bunki 0.2.4 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Bunki is an opinionated static site generator built with Bun. It's designed for
|
|
|
20
20
|
|
|
21
21
|
## Installation
|
|
22
22
|
|
|
23
|
-
> **IMPORTANT**: Bunki requires Bun v1.2.
|
|
23
|
+
> **IMPORTANT**: Bunki requires Bun v1.2.19 or later as its runtime. It is not compatible with Node.js.
|
|
24
24
|
|
|
25
25
|
### Prerequisites
|
|
26
26
|
|
|
@@ -28,7 +28,7 @@ Bunki is an opinionated static site generator built with Bun. It's designed for
|
|
|
28
28
|
# Install Bun if you don't have it
|
|
29
29
|
curl -fsSL https://bun.sh/install | bash
|
|
30
30
|
|
|
31
|
-
# Verify Bun version (should be 1.2.
|
|
31
|
+
# Verify Bun version (should be 1.2.19 or later)
|
|
32
32
|
bun --version
|
|
33
33
|
```
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bunki",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "An opinionated static site generator built with Bun",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -38,23 +38,23 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://github.com/kahwee/bunki#readme",
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"commander": "^14",
|
|
41
|
+
"commander": "^14.0.0",
|
|
42
42
|
"gray-matter": "^4.0.3",
|
|
43
|
-
"highlight.js": "^11.
|
|
44
|
-
"marked": "^
|
|
45
|
-
"marked-highlight": "^2.
|
|
43
|
+
"highlight.js": "^11.11.1",
|
|
44
|
+
"marked": "^16.1.2",
|
|
45
|
+
"marked-highlight": "^2.2.2",
|
|
46
46
|
"nunjucks": "^3.2.4",
|
|
47
47
|
"sanitize-html": "2.17.0",
|
|
48
48
|
"slugify": "^1.6.6"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@types/nunjucks": "^3.2.
|
|
52
|
-
"@types/sanitize-html": "^2.
|
|
53
|
-
"bun-types": "1.2.
|
|
51
|
+
"@types/nunjucks": "^3.2.6",
|
|
52
|
+
"@types/sanitize-html": "^2.16.0",
|
|
53
|
+
"bun-types": "1.2.20",
|
|
54
54
|
"husky": "^9.1.7",
|
|
55
|
-
"lint-staged": "16.
|
|
56
|
-
"prettier": "^3.
|
|
57
|
-
"typescript": "^5.
|
|
55
|
+
"lint-staged": "16.1.4",
|
|
56
|
+
"prettier": "^3.6.2",
|
|
57
|
+
"typescript": "^5.9.2"
|
|
58
58
|
},
|
|
59
59
|
"files": [
|
|
60
60
|
"dist",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"README.md"
|
|
63
63
|
],
|
|
64
64
|
"engines": {
|
|
65
|
-
"bun": ">=1.2.
|
|
65
|
+
"bun": ">=1.2.20"
|
|
66
66
|
},
|
|
67
67
|
"engineStrict": true,
|
|
68
68
|
"lint-staged": {
|