-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@walletconnect/identity-keys",
"version": "2.1.0",
"description": "Utilities to register, resolve and unregister identity keys",
"keywords": [
"identity",
"keys",
"identity-keys",
"walletconnect",
"web3",
"utils"
],
"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"
},
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/WalletConnect/walletconnect-utils/tree/master/misc/identity-keys",
"license": "MIT",
"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",
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-utils.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-utils/issues"
},
"files": [
"dist"
],
"devDependencies": {
"@ethersproject/wallet": "^5.7.0",
"@walletconnect/heartbeat": "^1.2.1",
"@walletconnect/jsonrpc-provider": "^1.0.13",
"@walletconnect/keyvaluestorage": "^1.1.1",
"@walletconnect/logger": "^3.0.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@ethersproject/hash": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@noble/ed25519": "^1.7.1",
"@walletconnect/cacao": "1.0.2",
"@walletconnect/core": "^2.10.1",
"@walletconnect/did-jwt": "2.1.0",
"@walletconnect/types": "^2.10.1",
"@walletconnect/utils": "^2.10.1",
"axios": "^1.13.5"
}
}