@engini/client 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 +4 -0
  2. package/index.js +1 -0
  3. package/package.json +11 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # @engini/client
2
+
3
+ Name reservation placeholder for the Engini Public API JavaScript/TypeScript client.
4
+ The functional client ships in a later release. See https://engini.io.
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = { version: "0.0.0" };
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@engini/client",
3
+ "version": "0.0.0",
4
+ "description": "Name reservation for the Engini Public API JavaScript/TypeScript client. Real releases follow.",
5
+ "license": "UNLICENSED",
6
+ "homepage": "https://engini.io",
7
+ "author": "Engini",
8
+ "main": "index.js",
9
+ "files": ["index.js", "README.md"],
10
+ "publishConfig": { "access": "public" }
11
+ }