@vivi2d/web 0.1.0-alpha.0 → 0.1.0-alpha.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 +7 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,16 +4,18 @@ Experimental browser SDK for embedding Vivi2D public-profile `.vivi` models.
4
4
 
5
5
  ## Install / Import
6
6
 
7
- Before npm publication, use this package from the Vivi2D repository or from an
8
- explicit release tarball. After npm publication:
7
+ The current Web SDK is published as an experimental alpha package:
9
8
 
10
9
  ```sh
11
10
  npm install @vivi2d/web@alpha
12
11
  ```
13
12
 
14
- Alpha releases are intentionally published under the `alpha` dist-tag, not
15
- `latest`. Pin an exact version in production experiments if reproducibility
16
- matters.
13
+ The `alpha` dist-tag currently resolves to `0.1.0-alpha.2`, which is published
14
+ through GitHub Actions OIDC Trusted Publishing with npm provenance. Pin
15
+ `@vivi2d/web@0.1.0-alpha.2` in experiments if reproducibility matters. The
16
+ older `0.1.0-alpha.0` bootstrap package is deprecated, and `latest` currently
17
+ resolves to that bootstrap version, so do not use `latest` as a stable Vivi2D
18
+ channel until release notes explicitly say so.
17
19
 
18
20
  ```ts
19
21
  import { createViviWebPlayer, loadViviWebModel } from "@vivi2d/web";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vivi2d/web",
3
- "version": "0.1.0-alpha.0",
3
+ "version": "0.1.0-alpha.2",
4
4
  "type": "module",
5
5
  "description": "Independent Vivi2D Web Component for embedding 2D models in browsers",
6
6
  "repository": {