@m6d/cerebro 0.1.0 → 1.0.0

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 -0
  2. package/package.json +10 -5
package/README.md CHANGED
@@ -39,6 +39,7 @@ bun run sample:feature-store
39
39
  - PRs targeting `main` run quality checks via `.github/workflows/pr-checks.yml`
40
40
  - Pushes to `main` run semantic-release via `.github/workflows/release.yml`
41
41
  - Releases use npm trusted publishing (OIDC), not long-lived npm tokens
42
+ - Provenance is currently disabled because npm does not support provenance from private GitHub repositories
42
43
 
43
44
  To enable trusted publishing for `@m6d/cerebro`:
44
45
 
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@m6d/cerebro",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/boring91/cerebro-javascript-sdk.git"
7
+ },
4
8
  "type": "module",
5
9
  "exports": {
6
10
  ".": {
@@ -34,8 +38,8 @@
34
38
  "@semantic-release/commit-analyzer": "^13.0.1",
35
39
  "@semantic-release/exec": "^7.1.0",
36
40
  "@semantic-release/git": "^10.0.1",
37
- "@semantic-release/github": "^11.0.6",
38
- "@semantic-release/npm": "^12.0.2",
41
+ "@semantic-release/github": "^12.0.0",
42
+ "@semantic-release/npm": "^13.1.4",
39
43
  "@semantic-release/release-notes-generator": "^14.1.0",
40
44
  "@types/bun": "latest",
41
45
  "cspell": "^9.6.4",
@@ -45,13 +49,14 @@
45
49
  "husky": "^9.1.7",
46
50
  "lint-staged": "^16.2.7",
47
51
  "prettier": "^3.6.2",
48
- "semantic-release": "^24.2.3",
52
+ "semantic-release": "^25.0.3",
49
53
  "sort-package-json": "^3.6.1"
50
54
  },
51
55
  "peerDependencies": {
52
56
  "typescript": "^5"
53
57
  },
54
58
  "publishConfig": {
55
- "access": "public"
59
+ "access": "public",
60
+ "provenance": false
56
61
  }
57
62
  }