UNPKG

walletlink-e

Version:
92 lines (90 loc) 2.76 kB
{ "name": "walletlink-e", "version": "2.0.3-e1", "description": "WalletLink JavaScript SDK", "keywords": [ "cipher", "cipherbrowser", "coinbase", "coinbasewallet", "eth", "ether", "ethereum", "etherium", "injection", "toshi", "wallet", "walletlink", "web3" ], "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "https://github.com/luckyCoco3418/walletlink.git", "author": "Coinbase, Inc.", "license": "Apache-2.0", "scripts": { "tsc": "tsc --noEmit --pretty", "test": "jest", "test:watch": "jest --watch", "build": "node compile-assets.js && webpack --config webpack.config.js", "build-chrome": "webpack --config webpack.config.chrome.js", "build-npm": "tsc -p ./tsconfig.build.json", "build:dev": "export WALLETLINK_URL='http://localhost:3000'; yarn build && yarn build-chrome", "build:dev:watch": "nodemon -e 'ts,tsx,js,json,css,scss,svg' --ignore 'src/**/*-css.ts' --ignore 'src/**/*-svg.ts' --watch src/ --watch chrome/ --exec 'yarn build:dev'", "build:prod": "yarn build && yarn build-chrome && yarn build-npm && cp ./package.json ../README.md ../LICENSE build/npm && cp -a src/vendor-js build/npm/dist && sed -i.bak 's| \"private\": true,||g' build/npm/package.json && rm -f build/npm/package.json.bak", "lint": "tslint -p . 'src/**/*.ts{,x}'", "lint:watch": "nodemon -e ts,tsx,js,json,css,scss,svg --watch src/ --exec 'yarn tsc && yarn lint'" }, "dependencies": { "bind-decorator": "^1.0.11", "bn.js": "^5.1.1", "clsx": "^1.1.0", "glob": "^7.1.6", "preact": "^10.5.9", "rxjs": "^6.6.3" }, "devDependencies": { "@types/bn.js": "^4.11.6", "@types/jest": "^26.0.19", "@types/node": "^14.14.20", "copy-webpack-plugin": "^6.4.1", "core-js": "^3.8.2", "jest": "^26.6.3", "nodemon": "^2.0.6", "raw-loader": "^4.0.2", "regenerator-runtime": "^0.13.7", "rxjs-tslint": "^0.1.7", "sass": "^1.32.8", "svgo": "^1.3.2", "ts-jest": "^26.4.4", "ts-loader": "^8.0.13", "tslib": "^2.0.3", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "tslint-config-security": "^1.16.0", "tslint-microsoft-contrib": "^6.2.0", "typescript": "^4.1.3", "webpack": "^4.44.2", "webpack-cli": "^3.3.12", "whatwg-fetch": "^3.5.0" }, "engines": { "node": ">= 10.0.0" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testEnvironment": "node", "testPathIgnorePatterns": [ "<rootDir>/dist/", "<rootDir>/node_modules/" ], "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "js", "json" ] } }