@quip.network/quip-swap-sdk 0.1.0-beta.0
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 +235 -0
- package/README.md +124 -0
- package/dist/index.d.ts +3136 -0
- package/dist/index.js +2596 -0
- package/dist/index.js.map +1 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@quip.network/quip-swap-sdk",
|
|
3
|
+
"version": "0.1.0-beta.0",
|
|
4
|
+
"description": "TypeScript SDK for the Quip Swap Omnibus protocol (hashlocked same-chain and cross-chain swaps)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "AGPL-3.0-or-later",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"generate:abi": "bun run scripts/generate-abi.ts",
|
|
22
|
+
"typecheck": "tsc --noEmit",
|
|
23
|
+
"test": "vitest run test/unit test/mocked-client",
|
|
24
|
+
"test:unit": "vitest run test/unit",
|
|
25
|
+
"test:mocked": "vitest run test/mocked-client",
|
|
26
|
+
"test:integration": "bun run scripts/run-integration-tests.ts",
|
|
27
|
+
"test:integration:verbose": "bun run scripts/run-integration-tests.ts --reporter=verbose",
|
|
28
|
+
"test:cross-chain": "bun run scripts/run-cross-chain-tests.ts",
|
|
29
|
+
"smoke": "bun run scripts/smoke.ts",
|
|
30
|
+
"build": "tsup",
|
|
31
|
+
"check": "bun run typecheck && bun run test && bun run build"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"viem": "^2.0.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/node": "^22.10.0",
|
|
38
|
+
"tsup": "^8.3.0",
|
|
39
|
+
"typescript": "^5.7.0",
|
|
40
|
+
"viem": "^2.21.0",
|
|
41
|
+
"vitest": "^2.1.0"
|
|
42
|
+
}
|
|
43
|
+
}
|