concrete-sdk 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/index.d.ts +1 -0
  2. package/index.js +2 -0
  3. package/package.json +18 -0
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const SDK_NAME: string;
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export const SDK_NAME = "concrete-sdk";
2
+ console.log("concrete-sdk reserved");
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "concrete-sdk",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder package to reserve the name concrete-sdk",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/placeholder/concrete-sdk.git"
10
+ },
11
+ "keywords": [
12
+ "concrete",
13
+ "sdk",
14
+ "api"
15
+ ],
16
+ "author": "Marco Furrer",
17
+ "license": "MIT"
18
+ }