Skip to content

Commit c8908ea

Browse files
authored
update deps and use bun in ci (#106)
* update deps and use bun in ci * fix ci
1 parent e250a2e commit c8908ea

File tree

5 files changed

+26
-5008
lines changed

5 files changed

+26
-5008
lines changed

.github/workflows/sdk.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ jobs:
2020
lint:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
24-
- name: Install modules
25-
run: npm install
26-
- name: Run ESLint
27-
run: npm run lint
23+
- uses: actions/checkout@v4
24+
- name: "setup:bun"
25+
uses: oven-sh/setup-bun@v1
26+
- name: "install-deps"
27+
run: bun install
28+
- name: "lint"
29+
run: bun run lint

bun.lockb

255 KB
Binary file not shown.

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,32 +29,32 @@
2929
"dependencies": {
3030
"@blockfrost/blockfrost-js": "^5.5.0",
3131
"@cosmjs/proto-signing": "^0.30.1",
32-
"@cosmjs/stargate": "^0.30.0",
32+
"@cosmjs/stargate": "^0.30.1",
3333
"@emurgo/cardano-serialization-lib-nodejs": "^11.5.0",
34-
"@solana/web3.js": "^1.91.3",
35-
"@substrate/txwrapper-polkadot": "^7.3.0",
34+
"@solana/web3.js": "^1.93.0",
35+
"@substrate/txwrapper-polkadot": "^7.5.1",
3636
"@taquito/local-forging": "^17.5.2",
37-
"@taquito/rpc": "^16.0.1",
37+
"@taquito/rpc": "^16.2.0",
3838
"@types/bn.js": "^5.1.5",
39-
"axios": "^1.6.5",
39+
"axios": "^1.7.2",
4040
"bn.js": "^5.2.1",
41-
"ethers": "^5.6.4",
42-
"fireblocks-sdk": "^4.0.0",
41+
"ethers": "^5.7.2",
42+
"fireblocks-sdk": "^4.2.0",
4343
"js-sha256": "^0.9.0",
4444
"near-api-js": "^2.1.4",
45-
"protobufjs": "^7.2.6",
45+
"protobufjs": "^7.3.2",
4646
"viem": "^1.21.4"
4747
},
4848
"devDependencies": {
4949
"@types/axios": "^0.14.0",
5050
"@types/node-fetch": "^2.6.11",
51-
"@typescript-eslint/eslint-plugin": "^5.0.0",
52-
"@typescript-eslint/parser": "^5.0.0",
51+
"@typescript-eslint/eslint-plugin": "^5.62.0",
52+
"@typescript-eslint/parser": "^5.62.0",
5353
"eslint": "^7.32.0",
5454
"eslint-config-airbnb-base": "^14.2.1",
55-
"eslint-config-next": "^12.2.3",
55+
"eslint-config-next": "^12.3.4",
5656
"eslint-plugin-import": "^2.29.1",
57-
"prettier": "^3.2.5",
58-
"typescript": "^5.4.3"
57+
"prettier": "^3.3.2",
58+
"typescript": "^5.5.2"
5959
}
6060
}

0 commit comments

Comments
 (0)