@retab/node 0.0.0-reserved

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 +2 -0
  2. package/index.js +7 -0
  3. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # uiform-node
2
+ Node.js library for the UiForm API.
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Placeholder package – just reserving the name for now.
3
+ * Feel free to open an issue if you’d like to collaborate!
4
+ */
5
+ module.exports = function () {
6
+ console.log('Package “my-awesome-name” is reserved by @your-npm-user.');
7
+ };
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@retab/node",
3
+ "version": "0.0.0-reserved",
4
+ "description": "Reserved for the @retab org",
5
+ "publishConfig": { "access": "public" },
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/retab/node.git"
9
+ },
10
+ "author": "Retab, Inc.",
11
+ "license": "MIT"
12
+ }