demo-pkg-dalana 0.0.1 → 0.0.2

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/index.ts +7 -1
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -1 +1,7 @@
1
- console.log("Hello via Bun!");
1
+ console.log("Hello via Bun!");
2
+
3
+ export const Sdk = {
4
+ greet: function () {
5
+ return "Hello from the SDK!";
6
+ },
7
+ };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "demo-pkg-dalana",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "0.0.1",
5
+ "version": "0.0.2",
6
6
  "devDependencies": {
7
7
  "@types/bun": "latest"
8
8
  },