@zapier/kitcore 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 +5 -0
  2. package/index.mjs +3 -0
  3. package/package.json +11 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @zapier/kitcore
2
+
3
+ Placeholder release that reserves the `@zapier/kitcore` name on the registry with public access.
4
+
5
+ Install the latest published version for actual usage.
package/index.mjs ADDED
@@ -0,0 +1,3 @@
1
+ // Placeholder seed for @zapier/kitcore.
2
+ // The real package is published from the zapier-sdk monorepo.
3
+ export {};
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@zapier/kitcore",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder release to reserve the @zapier/kitcore name.",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "type": "module",
7
+ "main": "index.mjs",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ }
11
+ }