@tcswap/browser 4.1.16
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.
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +10 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +10 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +38 -0
- package/src/index.ts +7 -0
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var{defineProperty:e,getOwnPropertyNames:o,getOwnPropertyDescriptor:r}=Object,t=Object.prototype.hasOwnProperty,i=(n,c,a)=>{for(let d of o(c))if(!t.call(n,d)&&d!=="default")e(n,d,{get:()=>c[d],enumerable:!0});if(a){for(let d of o(c))if(!t.call(a,d)&&d!=="default")e(a,d,{get:()=>c[d],enumerable:!0});return a}};var l=new WeakMap,y=(n)=>{var c=l.get(n),a;if(c)return c;if(c=e({},"__esModule",{value:!0}),n&&typeof n==="object"||typeof n==="function")o(n).map((d)=>!t.call(c,d)&&e(c,d,{get:()=>n[d],enumerable:!(a=r(n,d))||a.enumerable}));return l.set(n,c),c};var m={};module.exports=y(m);i(m,require("@tcswap/core"),module.exports);
|
|
2
|
+
|
|
3
|
+
//# debugId=70024220849A5C9864756E2164756E21
|
|
4
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../src/index.ts"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"/*\n * TODO:\n * - Add dynamic connect\n * - Add dynamic wallets\n */\n\nexport * from \"@tcswap/core\";\n"
|
|
6
|
+
],
|
|
7
|
+
"mappings": "2kBAMA",
|
|
8
|
+
"debugId": "70024220849A5C9864756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../src/index.ts"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"/*\n * TODO:\n * - Add dynamic connect\n * - Add dynamic wallets\n */\n\nexport * from \"@tcswap/core\";\n"
|
|
6
|
+
],
|
|
7
|
+
"mappings": "AAMA",
|
|
8
|
+
"debugId": "3A556590984BC59E64756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAMA,cAAc,cAAc,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": "swapkit-oss",
|
|
3
|
+
"dependencies": {
|
|
4
|
+
"@tcswap/core": "4.1.16",
|
|
5
|
+
"@tcswap/helpers": "4.5.15",
|
|
6
|
+
"@tcswap/plugins": "4.2.15",
|
|
7
|
+
"@tcswap/wallets": "4.3.16"
|
|
8
|
+
},
|
|
9
|
+
"description": "USwap - Browser SDK",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"bun": "./src/index.ts",
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.cjs",
|
|
15
|
+
"types": "./dist/types/index.d.ts"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": ["dist/", "src/"],
|
|
19
|
+
"homepage": "https://github.com/thorchain/TCSwap",
|
|
20
|
+
"license": "Apache-2.0",
|
|
21
|
+
"name": "@tcswap/browser",
|
|
22
|
+
"repository": {
|
|
23
|
+
"directory": "packages/browser",
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/thorchain/TCSwap.git"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "bun run ./build.ts",
|
|
29
|
+
"build:clean": "rm -rf dist && bun run ./build.ts",
|
|
30
|
+
"clean": "rm -rf dist node_modules *.tsbuildinfo",
|
|
31
|
+
"test": "echo 'bun test'",
|
|
32
|
+
"test:ci": "echo 'bun test --coverage'",
|
|
33
|
+
"type-check": "bun tsc --noEmit",
|
|
34
|
+
"type-check:go": "tsgo"
|
|
35
|
+
},
|
|
36
|
+
"type": "module",
|
|
37
|
+
"version": "4.1.16"
|
|
38
|
+
}
|