@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.
- package/.github/workflows/publish.yml +3 -0
- package/README.md +7 -0
- package/package.json +6 -3
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.
|
|
4
|
-
"
|
|
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
|
+
}
|