@bivy/bivy 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 (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # @bivy/bivy
2
+
3
+ Placeholder package reserving the `@bivy/bivy` name on npm.
4
+
5
+ This package does not contain any functionality yet. It is intended to eventually
6
+ hold the distributable parts of the [Bivy](https://github.com/) project.
7
+
8
+ Stay tuned.
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@bivy/bivy",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder for the distributable parts of Bivy. No functionality yet.",
5
+ "license": "FSL-1.1-ALv2",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=22.19.0"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "files": [
14
+ "README.md"
15
+ ]
16
+ }