@sundaeswap/wallet-lite 0.0.3
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/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sundaeswap/wallet-lite",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/cjs/index.js",
|
|
6
|
+
"module": "./dist/esm/index.js",
|
|
7
|
+
"types": "./dist/types/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/esm/index.js",
|
|
11
|
+
"require": "./dist/cjs/index.js",
|
|
12
|
+
"types": "./dist/types/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=16.0.0"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"test:watch": "jest --watch",
|
|
26
|
+
"test:coverage": "jest --coverage --watchAll=false",
|
|
27
|
+
"clean": "rm -rf ./dist",
|
|
28
|
+
"build:esm": "cross-env BABEL_ENV=esmUnbundled babel src --extensions '.ts,.tsx' --out-dir './dist/esm' --source-maps",
|
|
29
|
+
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions '.ts,.tsx' --out-dir 'dist/cjs' --source-maps",
|
|
30
|
+
"types": "tsc --project ./tsconfig.build.json",
|
|
31
|
+
"build": "bun run clean && bun run types && bun run build:esm && bun run build:cjs",
|
|
32
|
+
"watch": "bun run clean && bun run build && bun run build:esm --watch",
|
|
33
|
+
"version": "standard-version",
|
|
34
|
+
"publish": "npm publish"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@babel/cli": "^7.24.7",
|
|
38
|
+
"@cardano-sdk/core": "^0.33.0",
|
|
39
|
+
"@cardano-sdk/dapp-connector": "^0.12.19",
|
|
40
|
+
"@cardano-sdk/util": "^0.15.1",
|
|
41
|
+
"@fabianbormann/cardano-peer-connect": "^1.2.17",
|
|
42
|
+
"@koralabs/adahandle-sdk": "^1.5.4",
|
|
43
|
+
"@sundaeswap/asset": "^0.7.1",
|
|
44
|
+
"@sundaeswap/fraction": "0.5.9",
|
|
45
|
+
"lodash": "^4.17.21",
|
|
46
|
+
"rxjs": "^7.8.1"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"react": "^18.3.1",
|
|
50
|
+
"react-error-boundary": "^4.0.13"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@babel/core": "^7.24.7",
|
|
54
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
55
|
+
"@babel/preset-env": "^7.24.7",
|
|
56
|
+
"@babel/preset-react": "^7.24.7",
|
|
57
|
+
"@babel/preset-typescript": "^7.24.7",
|
|
58
|
+
"@happy-dom/global-registrator": "^14.12.0",
|
|
59
|
+
"@sundaeswap/babel-preset": "^2.0.4",
|
|
60
|
+
"@testing-library/dom": "^10.1.0",
|
|
61
|
+
"@testing-library/react": "^16.0.0",
|
|
62
|
+
"@testing-library/react-hooks": "^8.0.1",
|
|
63
|
+
"@testing-library/user-event": "^14.5.2",
|
|
64
|
+
"@types/libsodium-wrappers-sumo": "^0.7.8",
|
|
65
|
+
"@types/lodash": "^4.17.4",
|
|
66
|
+
"@types/node": "^20.14.2",
|
|
67
|
+
"@types/node-fetch": "^2.6.11",
|
|
68
|
+
"@types/react": "^18.3.3",
|
|
69
|
+
"@types/react-dom": "^18.3.0",
|
|
70
|
+
"cross-env": "^7.0.3",
|
|
71
|
+
"fetch-mock": "^9.11.0",
|
|
72
|
+
"happy-dom": "^14.12.0",
|
|
73
|
+
"standard-version": "^9.5.0",
|
|
74
|
+
"typescript": "^5.4.5"
|
|
75
|
+
}
|
|
76
|
+
}
|