Skip to content

Commit f32c683

Browse files
authored
Merge pull request #13 from BitteProtocol/linear-updates
intear wallet updates
2 parents f5187f7 + a902b36 commit f32c683

File tree

20 files changed

+920
-1002
lines changed

20 files changed

+920
-1002
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Setup pnpm
16+
uses: pnpm/action-setup@v4
17+
18+
- name: Use Node.js
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: '22.x'
22+
cache: 'pnpm'
23+
cache-dependency-path: 'pnpm-lock.yaml'
24+
25+
- name: Install
26+
run: pnpm install --frozen-lockfile
27+
28+
- name: Lint
29+
run: pnpm run lint
30+
31+
- name: Build
32+
run: pnpm run build

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
node_modules
2+
dist

dist/index.d.mts

Lines changed: 0 additions & 38 deletions
This file was deleted.

dist/index.d.ts

Lines changed: 0 additions & 38 deletions
This file was deleted.

dist/index.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

dist/index.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/index.mjs

Lines changed: 0 additions & 5 deletions
This file was deleted.

dist/index.mjs.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"name": "@bitte-ai/react",
3-
"version": "0.6.6-popup-wallet.1",
3+
"version": "0.0.0",
44
"description": "React app tools for Bitte Wallet",
5+
"packageManager": "[email protected]",
56
"scripts": {
67
"watch": "tsc && tsc --watch & jest --watch --coverage",
7-
"lint": "eslint . --fix --ext ts --ext tsx",
8+
"lint": "prettier --check src/.",
9+
"fmt": "prettier --write src/.",
810
"build": "tsup --config tsup.config.ts --external fsevents",
911
"prepare": "pnpm run build"
1012
},
@@ -30,11 +32,12 @@
3032
"devDependencies": {
3133
"@testing-library/react": "^16.3.0",
3234
"@testing-library/user-event": "^14.6.1",
33-
"@types/react": "^19.1.6",
34-
"@types/react-dom": "^19.1.5",
35+
"@types/react": "^19.1.12",
36+
"@types/react-dom": "^19.1.9",
37+
"prettier": "^3.6.2",
3538
"rxjs": "^7.8.2",
3639
"tsup": "^8.5.0",
37-
"typescript": "^5.8.3"
40+
"typescript": "^5.9.2"
3841
},
3942
"optionalDependencies": {
4043
"fsevents": "^2.3.3"
@@ -43,14 +46,20 @@
4346
"fsevents": false
4447
},
4548
"dependencies": {
46-
"@mintbase-js/data": "^0.6.6",
47-
"@mintbase-js/sdk": "^0.6.6",
48-
"@near-wallet-selector/core": "^9.0.2",
49-
"@near-wallet-selector/meteor-wallet": "^9.0.2",
50-
"@near-wallet-selector/modal-ui": "^9.0.2",
51-
"@near-wallet-selector/intear-wallet": "^9.0.2",
49+
"@near-wallet-selector/intear-wallet": "^9.5.1",
50+
"@near-wallet-selector/core": "^9.5.1",
51+
"@near-wallet-selector/here-wallet": "^9.5.1",
52+
"@near-wallet-selector/meteor-wallet": "^9.5.1",
53+
"@near-wallet-selector/modal-ui": "^9.5.1",
54+
"@near-wallet-selector/my-near-wallet": "^9.5.1",
5255
"buffer": "^6.0.3",
53-
"react": "^19.1.0",
54-
"react-dom": "^19.1.0"
56+
"react": "^19.1.1",
57+
"react-dom": "^19.1.1"
58+
},
59+
"pnpm": {
60+
"overrides": {
61+
"secp256k1": "^5.0.1",
62+
"base-x": "^3.0.11"
63+
}
5564
}
5665
}

0 commit comments

Comments
 (0)