@walletconnect/relay-api
Version:
54 lines (53 loc) • 1.74 kB
JSON
{
"name": "@walletconnect/relay-api",
"description": "Relay JSON-RPC API",
"version": "1.0.11",
"author": "WalletConnect, Inc. <walletconnect.com>",
"license": "MIT",
"keywords": [
"relay",
"json-rpc",
"jsonrpc",
"api",
"provider"
],
"files": [
"dist"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"homepage": "https://github.com/walletconnect/walletconnect-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-utils.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-utils/issues"
},
"scripts": {
"clean": "rm -rf dist",
"build:pre": "npm run clean",
"build:types": "tsc",
"build:source": "rollup --config rollup.config.js",
"build": "npm run build:pre && npm run build:source && npm run build:types",
"test": "env TS_NODE_PROJECT=\"tsconfig.cjs.json\" mocha --timeout 5000 --exit -r ts-node/register ./test/**/*.test.ts",
"lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'",
"npm-publish:latest": "npm publish --access public --tag latest",
"npm-publish:canary": "npm publish --access public --tag canary",
"prepublishOnly": "npm run test && npm run build",
"prettier": "prettier --config ../../.prettierrc --check {src,test}/**/*.ts",
"format": "prettier --config ../../.prettierrc --write {src,test}/**/*.ts"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@walletconnect/jsonrpc-types": "^1.0.2"
}
}