@vinary-tree/liblevenshtein 0.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 (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +2 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Vinary Tree npm bootstrap
2
+
3
+ This inert `0.0.0` artifact reserves an npm coordinate so its GitHub Actions
4
+ OIDC trusted publisher can be configured before the first release candidate.
5
+ Install the package's `next` or `latest` dist-tag instead.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ /** Bootstrap reservation only. Install the `next` or `latest` release. */
2
+ export const bootstrap = true;
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@vinary-tree/liblevenshtein",
3
+ "version": "0.0.0",
4
+ "description": "Bootstrap reservation for the Vinary Tree liblevenshtein package",
5
+ "type": "module",
6
+ "license": "Apache-2.0",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/vinary-tree/liblevenshtein-rust.git"
10
+ },
11
+ "exports": "./index.js",
12
+ "files": [
13
+ "index.js",
14
+ "README.md"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public",
18
+ "tag": "bootstrap"
19
+ }
20
+ }