@upn-lab/upn 0.0.1

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 +9 -0
  2. package/index.js +1 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @upn-lab/upn
2
+
3
+ This is an honest placeholder reserving the `@upn-lab` scope for **UPN Lab — a
4
+ universal polyglot notebook environment**, which is under active development and
5
+ will be published here.
6
+
7
+ Until a real release lands, this package intentionally does nothing.
8
+
9
+ - Organization: https://github.com/UpnLab
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = { version: "0.0.1", placeholder: true };
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@upn-lab/upn",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder for UPN Lab - a universal polyglot notebook environment. Full release forthcoming.",
5
+ "keywords": ["notebook", "polyglot", "upn"],
6
+ "homepage": "https://github.com/UpnLab",
7
+ "author": "Shriyansh Singh",
8
+ "main": "index.js",
9
+ "files": ["index.js", "README.md"]
10
+ }