@walletconnect/core
Version:
Core for WalletConnect Protocol
72 lines (71 loc) • 2.24 kB
JSON
{
"name": "@walletconnect/core",
"description": "Core for WalletConnect Protocol",
"version": "2.22.2",
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
"license": "SEE LICENSE IN LICENSE.md",
"main": "dist/index.cjs",
"module": "dist/index.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"module": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist"
],
"keywords": [
"wallet",
"walletconnect"
],
"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:pre": "rm -rf ./test/tmp",
"test:run": "vitest run --dir test",
"test": "npm run test:pre; npm run test:run",
"test:ignoreUnhandled": "npm run test:pre; npm run test:run -- --dangerouslyIgnoreUnhandledErrors",
"lint": "eslint -c '../../.eslintrc' --fix './src/**/*.ts'",
"prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'"
},
"dependencies": {
"@walletconnect/heartbeat": "1.2.2",
"@walletconnect/jsonrpc-provider": "1.0.14",
"@walletconnect/jsonrpc-types": "1.0.4",
"@walletconnect/jsonrpc-utils": "1.0.8",
"@walletconnect/jsonrpc-ws-connection": "1.0.16",
"@walletconnect/keyvaluestorage": "1.1.1",
"@walletconnect/logger": "2.1.2",
"@walletconnect/relay-api": "1.0.11",
"@walletconnect/relay-auth": "1.1.0",
"@walletconnect/safe-json": "1.0.2",
"@walletconnect/time": "1.0.2",
"@walletconnect/types": "2.22.2",
"@walletconnect/utils": "2.22.2",
"@walletconnect/window-getters": "1.0.1",
"es-toolkit": "1.39.3",
"events": "3.3.0",
"uint8arrays": "3.1.1"
},
"engines": {
"node": ">=18.20.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WalletConnect/walletconnect-monorepo.git",
"directory": "packages/core"
},
"publishConfig": {
"provenance": true
}
}