@stephansama/auto-readme 0.2.9 → 0.2.10

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 +5 -1
  2. package/package.json +23 -18
package/README.md CHANGED
@@ -1,4 +1,8 @@
1
- # Auto Readme 🪄
1
+ <div align="center">
2
+
3
+ # [`@stephansama`](https://github.com/stephansama) / auto-readme
4
+
5
+ </div>
2
6
 
3
7
  [![Source code](https://img.shields.io/badge/Source-666666?style=flat&logo=github&label=Github&labelColor=211F1F)](https://github.com/stephansama/packages/tree/main/core/auto-readme)
4
8
  [![Documentation](https://img.shields.io/badge/Documentation-211F1F?style=flat&logo=Wikibooks&labelColor=211F1F)](https://packages.stephansama.info/api/@stephansama/auto-readme)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stephansama/auto-readme",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "Generate lists and tables for your README automagically based on your repository and comments",
5
5
  "keywords": [
6
6
  "auto",
@@ -28,14 +28,19 @@
28
28
  "type": "module",
29
29
  "exports": {
30
30
  ".": {
31
+ "import": "./dist/index.mjs",
32
+ "require": "./dist/index.cjs"
33
+ },
34
+ "./schema": {
31
35
  "import": "./config/schema.mjs",
32
36
  "require": "./config/schema.cjs"
33
37
  },
34
- "./package.json": "./package.json"
38
+ "./package.json": "./package.json",
39
+ "./schema.json": "./config/schema.json"
35
40
  },
36
- "main": "./config/schema.cjs",
37
- "module": "./config/schema.mjs",
38
- "types": "./config/schema.d.cts",
41
+ "main": "./dist/index.cjs",
42
+ "module": "./dist/index.mjs",
43
+ "types": "./dist/index.d.cts",
39
44
  "bin": "./cli.mjs",
40
45
  "files": [
41
46
  "./dist",
@@ -46,25 +51,25 @@
46
51
  "cosmiconfig": "9.0.0",
47
52
  "deepmerge": "4.3.1",
48
53
  "handlebars": "4.7.9",
49
- "markdown-table": "^3.0.4",
54
+ "markdown-table": "3.0.4",
50
55
  "mdast": "3.0.0",
51
- "mdast-comment-marker": "^3.0.0",
52
- "mdast-util-from-markdown": "^2.0.2",
56
+ "mdast-comment-marker": "3.0.0",
57
+ "mdast-util-from-markdown": "2.0.2",
53
58
  "mdast-zone": "github:stephansama/mdast-zone#1c5b08cd97240debeed4c9c6afad49df5877a132",
54
59
  "obug": "2.1.1",
55
- "pkg-types": "^2.3.0",
60
+ "pkg-types": "2.3.0",
56
61
  "remark": "15.0.1",
57
- "remark-code-import": "^1.2.0",
58
- "remark-collapse": "^0.1.2",
59
- "remark-toc": "^9.0.0",
60
- "remark-usage": "^11.0.1",
62
+ "remark-code-import": "1.2.0",
63
+ "remark-collapse": "0.1.2",
64
+ "remark-toc": "9.0.0",
65
+ "remark-usage": "11.0.1",
61
66
  "smol-toml": "1.6.1",
62
67
  "tinyglobby": "0.2.16",
63
- "vfile": "^6.0.3",
64
- "yaml": "^2.8.2",
68
+ "vfile": "6.0.3",
69
+ "yaml": "2.8.2",
65
70
  "yargs": "18.0.0",
66
71
  "zod": "4.2.1",
67
- "zod2md": "^0.2.5"
72
+ "zod2md": "0.2.5"
68
73
  },
69
74
  "devDependencies": {
70
75
  "@types/mdast": "4.0.4",
@@ -82,9 +87,9 @@
82
87
  "provenance": true
83
88
  },
84
89
  "scripts": {
85
- "build": "node build.mjs",
90
+ "build": "tsdown",
86
91
  "postbuild": "publint",
87
- "dev": "node --watch-path=./src build.mjs",
92
+ "dev": "tsdown --watch",
88
93
  "lint": "eslint ./src/ --pass-on-no-patterns --no-error-on-unmatched-pattern",
89
94
  "lint:fix": "eslint ./src/ --pass-on-no-patterns --no-error-on-unmatched-pattern --fix"
90
95
  }