moonhead 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +27 -1
package/README.md CHANGED
@@ -14,7 +14,7 @@ pnpm build
14
14
 
15
15
  `moonhead` is published as a public package to npmjs.org by the `Publish packages` GitHub Actions workflow.
16
16
 
17
- After the initial local publish, configure npm Trusted Publishing for this repository and the `publish.yml` workflow. Increment the package version, push the changes, and publish a GitHub Release whose tag matches the Moonhead version. The pipeline uses GitHub OIDC, verifies and builds the package, and publishes it without stored npm tokens.
17
+ After the initial local publish, configure npm Trusted Publishing for this repository and the `publish.yml` workflow. Every relevant push to `main` automatically increments the patch version, verifies and builds the package, publishes it through GitHub OIDC, commits the release version, and creates the matching Git tag. No stored npm token or manual GitHub Release is required.
18
18
 
19
19
  Install the application package with:
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "moonhead",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
@@ -82,6 +82,32 @@
82
82
  "react-dom": "^19.2.4",
83
83
  "zod": "^4.4.3"
84
84
  },
85
+ "peerDependenciesMeta": {
86
+ "@base-ui/react": {
87
+ "optional": true
88
+ },
89
+ "@tabler/icons-react": {
90
+ "optional": true
91
+ },
92
+ "@tanstack/react-table": {
93
+ "optional": true
94
+ },
95
+ "next": {
96
+ "optional": true
97
+ },
98
+ "next-intl": {
99
+ "optional": true
100
+ },
101
+ "nuqs": {
102
+ "optional": true
103
+ },
104
+ "react": {
105
+ "optional": true
106
+ },
107
+ "react-dom": {
108
+ "optional": true
109
+ }
110
+ },
85
111
  "dependencies": {
86
112
  "@dicebear/collection": "^9.4.2",
87
113
  "@dicebear/core": "^9.4.2",