This repository has been archived by the owner on Dec 1, 2024. It is now read-only.
generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0af058
commit 76f4e15
Showing
2 changed files
with
1,923 additions
and
471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "solid-algo-wallets", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Integrate multiple Algorand wallets with a SolidJS web application client", | ||
"license": "MIT", | ||
"author": "Brian Whippo <[email protected]>", | ||
|
@@ -59,8 +59,9 @@ | |
"sideEffects": false, | ||
"scripts": { | ||
"build": "tsup", | ||
"clean": "rm -rf node_modules && rm -rf dist", | ||
"clean": "rm -rf dist", | ||
"prepublishOnly": "pnpm build", | ||
"publish": "pnpm publish", | ||
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" --ignore-path .gitignore", | ||
"lint": "concurrently pnpm:lint:*", | ||
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 \"src/**/*.{js,ts,tsx,jsx}\"", | ||
|
@@ -69,38 +70,38 @@ | |
"dev": "pnpm -dir site run dev" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.6.2", | ||
"@typescript-eslint/eslint-plugin": "^6.7.0", | ||
"@typescript-eslint/parser": "^6.7.0", | ||
"concurrently": "^8.2.1", | ||
"esbuild": "^0.19.3", | ||
"@types/node": "^20.11.5", | ||
"@typescript-eslint/eslint-plugin": "^6.19.0", | ||
"@typescript-eslint/parser": "^6.19.0", | ||
"concurrently": "^8.2.2", | ||
"esbuild": "^0.19.11", | ||
"esbuild-plugin-solid": "^0.5.0", | ||
"eslint": "^8.49.0", | ||
"eslint": "^8.56.0", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-no-only-tests": "^3.1.0", | ||
"jsdom": "^22.1.0", | ||
"prettier": "3.0.3", | ||
"prettier-plugin-tailwindcss": "^0.5.4", | ||
"tsup": "^7.2.0", | ||
"tsup-preset-solid": "^2.1.0", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.4.9", | ||
"vite-plugin-solid": "^2.7.0" | ||
"jsdom": "^23.2.0", | ||
"prettier": "3.2.4", | ||
"prettier-plugin-tailwindcss": "^0.5.11", | ||
"tsup": "^8.0.1", | ||
"tsup-preset-solid": "^2.2.0", | ||
"typescript": "^5.3.3", | ||
"vite": "^5.0.12", | ||
"vite-plugin-solid": "^2.8.2" | ||
}, | ||
"peerDependencies": { | ||
"solid-js": "^1.7.11" | ||
}, | ||
"dependencies": { | ||
"@blockshake/defly-connect": "^1.1.6", | ||
"@daffiwallet/connect": "^1.0.3", | ||
"@ledgerhq/hw-app-algorand": "^6.27.19", | ||
"@ledgerhq/hw-transport-webusb": "^6.27.19", | ||
"@perawallet/connect": "^1.3.1", | ||
"@ledgerhq/hw-app-algorand": "^6.28.1", | ||
"@ledgerhq/hw-transport-webusb": "^6.28.1", | ||
"@perawallet/connect": "^1.3.4", | ||
"@randlabs/myalgo-connect": "^1.4.2", | ||
"@solid-primitives/storage": "^2.1.1", | ||
"@solid-primitives/storage": "^2.1.2", | ||
"@walletconnect/modal": "^2.6.2", | ||
"@walletconnect/modal-sign-html": "^2.6.2", | ||
"@walletconnect/sign-client": "^2.10.1", | ||
"@walletconnect/sign-client": "^2.11.0", | ||
"algosdk": "2.7.0", | ||
"buffer": "^6.0.3" | ||
}, | ||
|
Oops, something went wrong.