@jibidieuw/dexes 0.0.2 → 0.1.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.
- package/LICENSE +21 -0
- package/dist/index.d.mts +157 -115
- package/dist/index.d.ts +157 -115
- package/dist/index.js +237 -176
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +231 -170
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jibidieuw/dexes",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "SDK for interacting with DEXES protocols (Web3PGP &
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "SDK for interacting with DEXES protocols (Web3PGP & Web3Sign) based on Ethereum and using Viem and OpenPGP",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -49,15 +49,20 @@
|
|
|
49
49
|
"clean": "find . -name '*.js' -o -name '*.d.ts' -o -name '*.map' | grep -E '(src|__tests__)' | xargs rm -f",
|
|
50
50
|
"clean:broadcasts": "rm -rf ../../contracts/broadcast/DeployTestEnvironment.s.sol",
|
|
51
51
|
"typecheck": "tsc --noEmit",
|
|
52
|
-
"test": "
|
|
52
|
+
"test": "npm run update-abis && node scripts/test-orchestrator.js",
|
|
53
|
+
"test:dev": "jest --watch",
|
|
54
|
+
"test:watch": "jest --watch",
|
|
53
55
|
"test:unit": "jest --runInBand --testPathIgnorePatterns=integration",
|
|
54
|
-
"test:integration": "npm run
|
|
55
|
-
"test:
|
|
56
|
+
"test:integration": "npm run test",
|
|
57
|
+
"test:web3sign": "npm run update-abis && node scripts/test-orchestrator.js -- --testPathPattern='web3sign'",
|
|
58
|
+
"test:web3pgp": "npm run update-abis && node scripts/test-orchestrator.js -- --testPathPattern='web3pgp'",
|
|
59
|
+
"test:all": "npm run test:unit && npm run test"
|
|
56
60
|
},
|
|
57
61
|
"devDependencies": {
|
|
58
62
|
"@types/jest": "^30.0.0",
|
|
59
63
|
"@types/node": "^24.8.1",
|
|
60
64
|
"@types/p-limit": "^2.2.0",
|
|
65
|
+
"dotenv": "^16.6.1",
|
|
61
66
|
"jest": "^30.2.0",
|
|
62
67
|
"ts-jest": "^29.4.5",
|
|
63
68
|
"tsup": "^8.5.1",
|
|
@@ -66,6 +71,6 @@
|
|
|
66
71
|
"dependencies": {
|
|
67
72
|
"openpgp": "^6.1.0",
|
|
68
73
|
"p-limit": "^2.3.0",
|
|
69
|
-
"viem": "
|
|
74
|
+
"viem": "*"
|
|
70
75
|
}
|
|
71
76
|
}
|