@zpress/kit 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 +10 -8
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,12 +1,14 @@
1
- <div align="center">
2
- <img src="https://raw.githubusercontent.com/joggrdocs/zpress/main/assets/banner.svg" alt="zpress" width="90%" />
3
- <p><strong>An opinionated documentation framework for monorepos. Just point it at your code.</strong></p>
1
+ # @zpress/kit
4
2
 
5
- <a href="https://github.com/joggrdocs/zpress/actions/workflows/ci.yml"><img src="https://github.com/joggrdocs/zpress/actions/workflows/ci.yml/badge.svg?branch=main" alt="CI" /></a>
6
- <a href="https://www.npmjs.com/package/@zpress/kit"><img src="https://img.shields.io/npm/v/@zpress/kit" alt="npm version" /></a>
7
- <a href="https://github.com/joggrdocs/zpress/blob/main/LICENSE"><img src="https://img.shields.io/github/license/joggrdocs/zpress" alt="License" /></a>
3
+ An opinionated documentation framework for monorepos. Just point it at your code.
8
4
 
9
- </div>
5
+ <span class="zp-badge">
6
+
7
+ [![CI](https://github.com/joggrdocs/zpress/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/joggrdocs/zpress/actions/workflows/ci.yml)
8
+ [![npm version](https://img.shields.io/npm/v/@zpress/kit)](https://www.npmjs.com/package/@zpress/kit)
9
+ [![License](https://img.shields.io/github/license/joggrdocs/zpress)](https://github.com/joggrdocs/zpress/blob/main/LICENSE)
10
+
11
+ </span>
10
12
 
11
13
  ## Features
12
14
 
@@ -32,7 +34,7 @@ import { defineConfig } from '@zpress/kit'
32
34
 
33
35
  export default defineConfig({
34
36
  title: 'my-project',
35
- description: 'Internal developer docs',
37
+ description: 'Documentation for my-project',
36
38
  sections: [
37
39
  {
38
40
  text: 'Getting Started',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zpress/kit",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Documentation framework powered by Rspress with a config-driven information architecture",
5
5
  "keywords": [
6
6
  "docs",
@@ -38,16 +38,16 @@
38
38
  "provenance": true
39
39
  },
40
40
  "dependencies": {
41
- "@zpress/cli": "0.3.4",
42
- "@zpress/core": "0.7.0",
43
- "@zpress/ui": "0.7.0"
41
+ "@zpress/cli": "0.4.0",
42
+ "@zpress/core": "0.7.1",
43
+ "@zpress/ui": "0.8.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@rslib/core": "^0.20.0",
47
47
  "typescript": "^5.9.3"
48
48
  },
49
49
  "peerDependencies": {
50
- "@rspress/core": "^2.0.5",
50
+ "@rspress/core": "^2.0.6",
51
51
  "react": "^19.2.4",
52
52
  "react-dom": "^19.2.4"
53
53
  },
@@ -57,6 +57,6 @@
57
57
  "scripts": {
58
58
  "build": "rslib build",
59
59
  "dev": "rslib build --watch --no-clean",
60
- "typecheck": "tsc --noEmit"
60
+ "typecheck": "tsgo --noEmit"
61
61
  }
62
62
  }