Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update pkgs #8

Merged
merged 4 commits into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.6.0
version: 9.15.0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 22.x
cache: "pnpm"
- name: Install dependencies
run: pnpm install
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
v22
66 changes: 32 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,33 @@
{
"repository": "https://github.com/minswap/wallet-connect.git",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dapp": "turbo run --filter dapp --filter wc-dapp dev",
"wallet": "turbo run --filter wallet --filter wc-wallet dev",
"start": "turbo run start",
"lint": "turbo run lint",
"clean": "turbo run clean",
"prettier": "prettier --check .",
"format": "prettier --check . -w",
"publish:wc-dapp": "node scripts/publish.js"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-turbo": "latest",
"turbo": "^1.10.1",
"prettier": "2.8.8",
"typescript": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint-config-next": "^13.4.4",
"eslint-plugin-formatjs": "^4.10.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-unused-imports": "^2.0.0"
}
}
"repository": "https://github.com/minswap/wallet-connect.git",
"license": "MIT",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dapp": "turbo run --filter dapp --filter wc-dapp dev",
"wallet": "turbo run --filter wallet --filter wc-wallet dev",
"start": "turbo run start",
"lint": "turbo run lint",
"clean": "turbo run clean",
"prettier": "prettier --check .",
"format": "prettier --check . -w",
"publish:wc-dapp": "node scripts/publish.js"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-turbo": "latest",
"turbo": "^1.10.1",
"prettier": "2.8.8",
"typescript": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint-config-next": "^13.4.4",
"eslint-plugin-formatjs": "^4.10.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-unused-imports": "^2.0.0"
},
"packageManager": "[email protected]"
}
18 changes: 9 additions & 9 deletions packages/wc-dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@minswap/wc-dapp",
"description": "Wallet connect integration for Cardano dApps",
"version": "2.1.0",
"version": "2.2.0",
"author": "Parichay <[email protected]>",
"homepage": "https://github.com/minswap/wallet-connect/",
"repository": {
Expand Down Expand Up @@ -37,17 +37,17 @@
],
"dependencies": {
"@minswap/tiny-invariant": "^1.2.0",
"@walletconnect/modal": "2.6.2",
"@walletconnect/universal-provider": "2.11.0",
"bs58": "5.0.0",
"@walletconnect/modal": "2.7.0",
"@walletconnect/universal-provider": "2.17.3",
"bs58": "6.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@walletconnect/types": "^2.11.0",
"vite": "3.1.0",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.24.3"
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@walletconnect/types": "^2.17.3",
"vite": "6.0.5",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8"
}
}
Loading
Loading