ReviewOS

also looking at this

stacks/bunpress

chore(deps): update dependency marked to 16.4.0

#11
Closed chrisbbreuer wants to merge buddy-bot/update-major-update---marked-1755900282823 into main
1 file +28 -23
package.jsonmodified+28-23
Changes to package.json
@@ -1,7 +1,7 @@
11{
22 "name": "@stacksjs/bunpress",
33 "type": "module",
4 "version": "0.0.0",
4 "version": "0.0.1",
55 "description": "Modern documentation engine. Powered by Bun.",
66 "author": "Chris Breuer <chris@stacksjs.org>",
77 "license": "MIT",
@@ -23,18 +23,21 @@
2323 "exports": {
2424 ".": {
2525 "types": "./dist/index.d.ts",
26 "import": "./dist/index.js"
26 "import": "./dist/src/index.js"
2727 },
2828 "./*": {
2929 "import": "./dist/*"
3030 }
3131 },
32 "module": "./dist/index.js",
32 "module": "./dist/src/index.js",
3333 "types": "./dist/index.d.ts",
3434 "bin": {
3535 "bunpress": "./dist/bin/cli.js"
3636 },
37 "files": ["README.md", "dist"],
37 "files": [
38 "README.md",
39 "dist"
40 ],
3841 "scripts": {
3942 "dev": "bun run dev:docs",
4043 "build": "bun --bun build.ts && bun run compile",
@@ -47,38 +50,40 @@
4750 "compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/bunpress-darwin-arm64",
4851 "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
4952 "prepublishOnly": "bun --bun run build && bun run compile:all",
50 "test": "bun test",
53 "test": "bun test --reporter=verbose",
54 "test:quick": "bun test --timeout=10000",
55 "test:full": "bun test --timeout=60000 --no-bail",
5156 "lint": "bunx --bun eslint .",
5257 "lint:fix": "bunx --bun eslint . --fix",
5358 "changelog": "bunx logsmith --verbose",
5459 "changelog:generate": "bunx logsmith --output CHANGELOG.md",
5560 "release": "bun run changelog:generate && bunx bumpx prompt --recursive",
56 "postinstall": "bunx git-hooks",
5761 "dev:docs": "bun bin/cli.ts dev",
5862 "build:docs": "bun build.ts",
5963 "preview:docs": "bun serve --port 3000 dist",
6064 "typecheck": "bun --bun tsc --noEmit"
6165 },
6266 "dependencies": {
63 "@unocss/config": "^66.1.0-beta.12",
64 "@unocss/core": "^66.1.0-beta.12",
65 "@unocss/preset-wind3": "^66.1.0-beta.12",
66 "bun-plugin-unocss": "^0.1.3",
67 "@markedjs/html-differ": "^5.0.2",
68 "@stacksjs/headwind": "^0.1.1",
6769 "gray-matter": "^4.0.3",
68 "marked": "^15.0.11"
70 "highlight.js": "^11.11.1",
71 "marked": "^16.4.0",
72 "marked-alert": "^2.1.2",
73 "marked-emoji": "^2.0.1",
74 "marked-highlight": "^2.2.2",
75 "shiki": "^3.13.0"
6976 },
7077 "devDependencies": {
71 "@stacksjs/bumpx": "^0.1.13",
72 "@stacksjs/eslint-config": "^4.10.2-beta.3",
78 "@stacksjs/bumpx": "^0.1.84",
79 "@stacksjs/eslint-config": "^4.14.0-beta.3",
7380 "@stacksjs/gitlint": "^0.1.5",
74 "@stacksjs/logsmith": "^0.1.8",
75 "@types/bun": "^1.2.10",
76 "@types/marked": "^6.0.0",
77 "buddy-bot": "^0.8.8",
78 "bun-git-hooks": "^0.2.19",
79 "bun-plugin-dtsx": "^0.21.9",
80 "bunfig": "^0.8.3",
81 "typescript": "^5.8.3"
81 "@stacksjs/logsmith": "^0.1.18",
82 "@stacksjs/ts-i18n": "^0.0.0",
83 "bun-git-hooks": "^0.3.1",
84 "bun-plugin-dtsx": "0.9.5",
85 "bunfig": "^0.15.0",
86 "typescript": "^5.9.3"
8287 },
8388 "overrides": {
8489 "unconfig": "0.3.10"
@@ -86,9 +91,9 @@
8691 "git-hooks": {
8792 "pre-commit": {
8893 "staged-lint": {
89 "*.{js,ts,json,yaml,yml,md}": "bun lint:fix"
94 "*.{js,ts,json,yaml,yml,md}": "bunx --bun eslint --fix"
9095 }
9196 },
92 "commit-msg": "bunx gitlint --edit $1"
97 "commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
9398 }
9499}