@aurora-studio/sdk 0.1.0 → 0.1.3

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.
@@ -26,6 +26,9 @@ jobs:
26
26
  registry-url: "https://registry.npmjs.org"
27
27
  cache: "pnpm"
28
28
 
29
+ # Trusted publishing requires npm 11.5.1+
30
+ - run: npm install -g npm@11
31
+
29
32
  - run: pnpm install
30
33
 
31
34
  - run: pnpm run build
package/README.md CHANGED
@@ -6,6 +6,13 @@ Node.js SDK for Aurora Studio. Connect custom front-ends and storefronts to your
6
6
 
7
7
  [**Sign up for Aurora**](https://aurora.mandeville.digital) — currently in beta testing and free.
8
8
 
9
+ ## Changelog
10
+
11
+ - **0.1.3** — Add repository field for provenance
12
+ - **0.1.2** — Trusted publishing (OIDC) configured
13
+ - **0.1.1** — CI/CD setup
14
+ - **0.1.0** — Initial release
15
+
9
16
  ## Install
10
17
 
11
18
  ```bash
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@aurora-studio/sdk",
3
- "version": "0.1.0",
4
- "private": false,
3
+ "version": "0.1.3",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/marceldupr/aurora-sdk"
7
+ },
5
8
  "type": "module",
6
9
  "main": "dist/index.js",
7
10
  "types": "dist/index.d.ts",
@@ -20,4 +23,4 @@
20
23
  "engines": {
21
24
  "node": ">=18"
22
25
  }
23
- }
26
+ }