bunki 0.2.4 → 0.2.5

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.
Files changed (2) hide show
  1. package/README.md +2 -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.12 or later as its runtime. It is not compatible with Node.js.
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.12 or later)
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.4",
3
+ "version": "0.2.5",
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.9.0",
44
- "marked": "^15.0.11",
45
- "marked-highlight": "^2.0.7",
43
+ "highlight.js": "^11.11.1",
44
+ "marked": "^16.1.1",
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.5",
52
- "@types/sanitize-html": "^2.9.5",
53
- "bun-types": "1.2.13",
51
+ "@types/nunjucks": "^3.2.6",
52
+ "@types/sanitize-html": "^2.16.0",
53
+ "bun-types": "1.2.19",
54
54
  "husky": "^9.1.7",
55
- "lint-staged": "16.0.0",
56
- "prettier": "^3.1.0",
57
- "typescript": "^5.2.2"
55
+ "lint-staged": "16.1.2",
56
+ "prettier": "^3.6.2",
57
+ "typescript": "^5.8.3"
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.12"
65
+ "bun": ">=1.2.19"
66
66
  },
67
67
  "engineStrict": true,
68
68
  "lint-staged": {