bunki 0.2.6 → 0.3.2
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 +468 -66
- package/dist/cli.js +11183 -15080
- package/dist/fsevents-hj42pnne.node +0 -0
- package/dist/index.js +21657 -25929
- package/package.json +44 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bunki",
|
|
3
|
-
"version": "0.2
|
|
4
|
-
"description": "An opinionated static site generator built with Bun",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"description": "An opinionated static site generator built with Bun featuring PostCSS integration and modern web development workflows",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -11,11 +11,15 @@
|
|
|
11
11
|
"dev": "bun run --watch src/index.ts",
|
|
12
12
|
"test": "bun test",
|
|
13
13
|
"test:coverage": "bun test --coverage --coverage-reporter=lcov",
|
|
14
|
+
"test:watch": "bun test --watch",
|
|
14
15
|
"format": "prettier --write .",
|
|
15
16
|
"format:check": "prettier --check .",
|
|
16
17
|
"prepare": "husky",
|
|
17
18
|
"lint-staged": "lint-staged",
|
|
18
|
-
"typecheck": "bun tsc --noEmit"
|
|
19
|
+
"typecheck": "bun tsc --noEmit",
|
|
20
|
+
"clean": "rm -rf dist coverage",
|
|
21
|
+
"prepack": "bun run clean && bun run build",
|
|
22
|
+
"prepublishOnly": "bun run clean && bun run build && bun run test && bun run typecheck"
|
|
19
23
|
},
|
|
20
24
|
"bin": {
|
|
21
25
|
"bunki": "./dist/cli.js"
|
|
@@ -25,7 +29,12 @@
|
|
|
25
29
|
"markdown",
|
|
26
30
|
"blog",
|
|
27
31
|
"bun",
|
|
28
|
-
"typescript"
|
|
32
|
+
"typescript",
|
|
33
|
+
"postcss",
|
|
34
|
+
"tailwind",
|
|
35
|
+
"css-processing",
|
|
36
|
+
"jamstack",
|
|
37
|
+
"web-development"
|
|
29
38
|
],
|
|
30
39
|
"author": "KahWee Teng",
|
|
31
40
|
"license": "MIT",
|
|
@@ -41,9 +50,11 @@
|
|
|
41
50
|
"commander": "^14.0.0",
|
|
42
51
|
"gray-matter": "^4.0.3",
|
|
43
52
|
"highlight.js": "^11.11.1",
|
|
44
|
-
"marked": "^16.
|
|
53
|
+
"marked": "^16.2.0",
|
|
45
54
|
"marked-highlight": "^2.2.2",
|
|
46
55
|
"nunjucks": "^3.2.4",
|
|
56
|
+
"postcss": "^8.5.6",
|
|
57
|
+
"postcss-cli": "^11.0.1",
|
|
47
58
|
"sanitize-html": "2.17.0",
|
|
48
59
|
"slugify": "^1.6.6"
|
|
49
60
|
},
|
|
@@ -52,20 +63,45 @@
|
|
|
52
63
|
"@types/sanitize-html": "^2.16.0",
|
|
53
64
|
"bun-types": "1.2.20",
|
|
54
65
|
"husky": "^9.1.7",
|
|
55
|
-
"lint-staged": "16.1.
|
|
66
|
+
"lint-staged": "16.1.5",
|
|
56
67
|
"prettier": "^3.6.2",
|
|
57
68
|
"typescript": "^5.9.2"
|
|
58
69
|
},
|
|
70
|
+
"peerDependencies": {
|
|
71
|
+
"postcss": "^8.0.0"
|
|
72
|
+
},
|
|
73
|
+
"peerDependenciesMeta": {
|
|
74
|
+
"postcss": {
|
|
75
|
+
"optional": true
|
|
76
|
+
}
|
|
77
|
+
},
|
|
59
78
|
"files": [
|
|
60
79
|
"dist",
|
|
61
80
|
"LICENSE",
|
|
62
81
|
"README.md"
|
|
63
82
|
],
|
|
64
83
|
"engines": {
|
|
65
|
-
"bun": ">=1.2.20"
|
|
84
|
+
"bun": ">=1.2.20",
|
|
85
|
+
"node": ">=18.0.0"
|
|
66
86
|
},
|
|
67
87
|
"engineStrict": true,
|
|
88
|
+
"publishConfig": {
|
|
89
|
+
"access": "public"
|
|
90
|
+
},
|
|
91
|
+
"funding": {
|
|
92
|
+
"type": "github",
|
|
93
|
+
"url": "https://github.com/sponsors/kahwee"
|
|
94
|
+
},
|
|
68
95
|
"lint-staged": {
|
|
69
96
|
"**/*": "prettier --write --ignore-unknown"
|
|
70
|
-
}
|
|
97
|
+
},
|
|
98
|
+
"exports": {
|
|
99
|
+
".": {
|
|
100
|
+
"types": "./dist/index.d.ts",
|
|
101
|
+
"import": "./dist/index.mjs",
|
|
102
|
+
"default": "./dist/index.js"
|
|
103
|
+
},
|
|
104
|
+
"./cli": "./dist/cli.js"
|
|
105
|
+
},
|
|
106
|
+
"sideEffects": false
|
|
71
107
|
}
|