@rhombus-toolkit/obj 0.0.0-placeholder.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 +13 -0
  2. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # @rhombus-toolkit/obj
2
+
3
+ **This version is a placeholder. It contains no code.**
4
+
5
+ It exists only to reserve the package name so that npm Trusted Publishing can be
6
+ configured ahead of the first real release. Do not depend on this version.
7
+
8
+ Real content ships as `1.0.0-next.x` on the `next` dist-tag.
9
+
10
+ This package will hold the typed counterparts of the `Object.*` statics —
11
+ `keys`, `values`, `entries`, `fromEntries`, `assign` — each a type and a wrapper
12
+ function declaration-merged under one name, moved out of
13
+ `@rhombus-toolkit/type-helpers`.
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@rhombus-toolkit/obj",
3
+ "version": "0.0.0-placeholder.0",
4
+ "description": "PLACEHOLDER — name reservation only. Real content lands in a 1.0.0-next release.",
5
+ "license": "MIT",
6
+ "author": "Thomas Butler",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/rhombus-toolkit/ts.git",
10
+ "directory": "libraries/obj"
11
+ },
12
+ "type": "module",
13
+ "sideEffects": false,
14
+ "files": [
15
+ "README.md"
16
+ ],
17
+ "publishConfig": {
18
+ "access": "public"
19
+ }
20
+ }