-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "balanced-solver-sdk",
"version": "0.0.1",
"license": "MIT",
"description": "Balanced Network intents SDK",
"keywords": [
"balanced-solver-sdk"
],
"homepage": "https://github.com/balancednetwork/balanced-solver-sdk",
"bugs": {
"url": "https://github.com/balancednetwork/balanced-solver-sdk/issues"
},
"author": "R.M | Icon Foundation",
"repository": {
"type": "git",
"url": "git+https://github.com/balancednetwork/balanced-solver-sdk.git"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "vitest run",
"dev": "vitest",
"ci": "npm run build && npm run check-format && npm run check-exports",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"prepublishOnly": "npm run ci",
"local-release": "changeset version && changeset publish"
},
"files": [
"dist"
],
"type": "module",
"dependencies": {
"@mysten/bcs": "^1.1.0",
"@mysten/sui": "^1.14.1",
"@mysten/wallet-standard": "^0.13.9",
"@uniswap/permit2-sdk": "^1.3.0",
"tiny-invariant": "^1.1.0",
"viem": "^2.21.35"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.9",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}