Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@settlemint/btp-sdk-react

Package Overview
Dependencies
Maintainers
2
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@settlemint/btp-sdk-react - npm Package Compare versions

Comparing version
0.4.3
to
0.4.4
+10
-3
dist/index.cjs
'use strict';
console.log("Hello via Bun!");function n(l){return `Hello ${l}!`}function o(l){return `Hello ${l}!`}
// src/index.ts
console.log("Hello via Bun!");
function hello(name) {
return `Hello ${name}!`;
}
function hallo3(name) {
return `Hello ${name}!`;
}
exports.hallo3 = o;
exports.hello = n;
exports.hallo3 = hallo3;
exports.hello = hello;
//# sourceMappingURL=index.cjs.map
//# sourceMappingURL=index.cjs.map

@@ -1,1 +0,1 @@

{"version":3,"sources":["../src/index.ts"],"names":["hello","name","hallo3"],"mappings":";;AAAA,OAAA,CAAQ,IAAI,gBAAgB,CAAA,CAErB,SAASA,CAAMC,CAAAA,CAAAA,CAAsB,CAC1C,OAAO,CAAA,MAAA,EAASA,CAAI,CACtB,CAAA,CAAA,CAEO,SAASC,CAAOD,CAAAA,CAAAA,CAAsB,CAC3C,OAAO,CAAA,MAAA,EAASA,CAAI,CACtB,CAAA,CAAA","file":"index.cjs","sourcesContent":["console.log(\"Hello via Bun!\");\n\nexport function hello(name: string): string {\n return `Hello ${name}!`;\n}\n\nexport function hallo3(name: string): string {\n return `Hello ${name}!`;\n}\n"]}
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,OAAA,CAAQ,IAAI,gBAAgB,CAAA,CAAA;AAErB,SAAS,MAAM,IAAsB,EAAA;AAC1C,EAAA,OAAO,SAAS,IAAI,CAAA,CAAA,CAAA,CAAA;AACtB,CAAA;AAEO,SAAS,OAAO,IAAsB,EAAA;AAC3C,EAAA,OAAO,SAAS,IAAI,CAAA,CAAA,CAAA,CAAA;AACtB","file":"index.cjs","sourcesContent":["console.log(\"Hello via Bun!\");\n\nexport function hello(name: string): string {\n return `Hello ${name}!`;\n}\n\nexport function hallo3(name: string): string {\n return `Hello ${name}!`;\n}\n"]}

@@ -1,5 +0,12 @@

console.log("Hello via Bun!");function n(l){return `Hello ${l}!`}function o(l){return `Hello ${l}!`}
// src/index.ts
console.log("Hello via Bun!");
function hello(name) {
return `Hello ${name}!`;
}
function hallo3(name) {
return `Hello ${name}!`;
}
export { o as hallo3, n as hello };
export { hallo3, hello };
//# sourceMappingURL=index.js.map
//# sourceMappingURL=index.js.map

@@ -1,1 +0,1 @@

{"version":3,"sources":["../src/index.ts"],"names":["hello","name","hallo3"],"mappings":"AAAA,OAAA,CAAQ,IAAI,gBAAgB,CAAA,CAErB,SAASA,CAAMC,CAAAA,CAAAA,CAAsB,CAC1C,OAAO,CAAA,MAAA,EAASA,CAAI,CACtB,CAAA,CAAA,CAEO,SAASC,CAAOD,CAAAA,CAAAA,CAAsB,CAC3C,OAAO,CAAA,MAAA,EAASA,CAAI,CACtB,CAAA,CAAA","file":"index.js","sourcesContent":["console.log(\"Hello via Bun!\");\n\nexport function hello(name: string): string {\n return `Hello ${name}!`;\n}\n\nexport function hallo3(name: string): string {\n return `Hello ${name}!`;\n}\n"]}
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AAAA,OAAA,CAAQ,IAAI,gBAAgB,CAAA,CAAA;AAErB,SAAS,MAAM,IAAsB,EAAA;AAC1C,EAAA,OAAO,SAAS,IAAI,CAAA,CAAA,CAAA,CAAA;AACtB,CAAA;AAEO,SAAS,OAAO,IAAsB,EAAA;AAC3C,EAAA,OAAO,SAAS,IAAI,CAAA,CAAA,CAAA,CAAA;AACtB","file":"index.js","sourcesContent":["console.log(\"Hello via Bun!\");\n\nexport function hello(name: string): string {\n return `Hello ${name}!`;\n}\n\nexport function hallo3(name: string): string {\n return `Hello ${name}!`;\n}\n"]}
{
"name": "@settlemint/btp-sdk-react",
"version": "0.4.3",
"version": "0.4.4",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",

@@ -41,5 +41,6 @@ "type": "module",

"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"packcheck": "attw --pack ."
"build": "tsup-node src/index.ts --format esm,cjs --dts",
"dev": "tsup-node src/index.ts --format esm,cjs --dts --watch",
"publint": "publint run",
"attw": "attw --pack ."
},

@@ -51,4 +52,5 @@ "devDependencies": {

"peerDependencies": {
"react": "18.3.1"
"react": ">=18 || >=19.0.0-beta",
"react-dom": ">=18 || >=19.0.0-beta"
}
}