@tronweb3/tronwallet-adapter-imtoken
Version:
Wallet adapter for imToken Wallet Android and IOS app.
53 lines • 1.28 kB
JSON
{
"name": "@tronweb3/tronwallet-adapter-imtoken",
"version": "1.0.2",
"description": "Wallet adapter for imToken Wallet Android and IOS app.",
"keywords": [
"TRON",
"TronWeb",
"imToken"
],
"author": "tronweb3",
"repository": {
"type": "git",
"url": "https://github.com/tronweb3/tronwallet-adapter"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts"
},
"files": [
"lib",
"src",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@tronweb3/tronwallet-abstract-adapter": "^1.1.9",
"@tronweb3/tronwallet-adapter-tronlink": "^1.1.12"
},
"devDependencies": {
"@testing-library/dom": "^8.20.0",
"jest-environment-jsdom": "^29.3.1",
"shx": "^0.3.4"
},
"scripts": {
"clean": "shx mkdir -p lib && shx rm -rf lib",
"package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",
"test": "jest",
"build:umd": "node ../../../scripts/build-umd.js"
}
}