Skip to content

Commit

Permalink
feat: add CyberWalletConnector
Browse files Browse the repository at this point in the history
  • Loading branch information
akasuv committed Nov 28, 2023
1 parent f2b17ff commit 5291cdb
Show file tree
Hide file tree
Showing 14 changed files with 3,727 additions and 702 deletions.
6 changes: 0 additions & 6 deletions babel.config.js

This file was deleted.

25 changes: 11 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,23 @@
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"types": "./lib/cjs/types/index.d.ts",
"module": "./lib/esm/index.js",
"types": "./dist/index.d.mts",
"module": "./dist/index.mjs",
"files": [
"lib/**/*"
"dist/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"clean": "rm -rf ./lib",
"clean": "rm -rf ./dist",
"test": "jest",
"build": "pnpm run test && pnpm run clean && pnpm run build:esm && pnpm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build": "pnpm run test && pnpm run clean && npx tsup --dts",
"prepack": "pnpm run build",
"semantic-release": "semantic-release"
},
Expand All @@ -34,10 +28,12 @@
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.4",
"@types/node": "^20.9.3",
"babel-jest": "^29.6.3",
"jest": "^29.6.3",
"prettier": "^3.0.2",
"semantic-release": "^22.0.1",
"tsup": "^8.0.0",
"typescript": "^5.1.6"
},
"keywords": [],
Expand All @@ -51,7 +47,8 @@
"url": "https://github.com/cyberconnecthq/cyber-app-sdk.git"
},
"dependencies": {
"@wagmi/connectors": "^3.1.5",
"ts-node": "^10.9.1",
"viem": "^1.8.1"
"viem": "^1.19.1"
}
}
Loading

0 comments on commit 5291cdb

Please sign in to comment.