@b3-business/cherry 0.1.0 → 0.2.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 +11 -2
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -4,8 +4,17 @@
4
4
 
5
5
  A tree-shakeable, minimal API client factory. Import only the routes you need — nothing more.
6
6
 
7
- [![npm](https://img.shields.io/npm/v/@b3b/cherry)](https://www.npmjs.com/package/@b3b/cherry)
8
- [![JSR](https://jsr.io/badges/@b3b/cherry)](https://jsr.io/@b3b/cherry)
7
+ [![npm](https://img.shields.io/npm/v/@b3-business/cherry)](https://www.npmjs.com/package/@b3-business/cherry)
8
+ [![JSR](https://jsr.io/badges/@b3-business/cherry)](https://jsr.io/@b3-business/cherry)
9
+ [![GitHub](https://img.shields.io/github/stars/b3-business/cherry?style=social)](https://github.com/b3-business/cherry)
10
+
11
+ ---
12
+
13
+ ## Latest Changelog - 0.2.2
14
+
15
+ - Fix: Add repository field for npm provenance verification
16
+
17
+ See [CHANGELOG.md](./CHANGELOG.md) for full history.
9
18
 
10
19
  ---
11
20
 
package/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "@b3-business/cherry",
3
- "version": "0.1.0",
3
+ "version": "0.2.2",
4
4
  "description": "A tree-shakeable, minimal API client factory. Import only the routes you need — nothing more.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/b3-business/cherry"
8
+ },
9
+ "license": "MIT",
5
10
  "type": "module",
6
11
  "main": "./dist/index.js",
7
12
  "types": "./dist/index.d.ts",
@@ -22,7 +27,10 @@
22
27
  "lint": "oxlint src test",
23
28
  "typecheck": "tsc --noEmit -p .",
24
29
  "typecheck-test": "tsc --noEmit -p tsconfig.test.json",
25
- "test": "bun test"
30
+ "test": "bun test",
31
+ "prepublishOnly": "npm run check && npm run test && npm run build",
32
+ "publish:dry": "npm publish --dry-run --access public",
33
+ "publish:npm": "npm publish --access public"
26
34
  },
27
35
  "dependencies": {
28
36
  "neverthrow": "^8.2.0",