forked from coinhall/cosmes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.36 KB
/
package.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cosmes",
"version": "0.0.54",
"private": false,
"packageManager": "pnpm@8.3.0",
"sideEffects": false,
"type": "module",
"files": [
"src",
"dist"
],
"exports": {
"./client": "./dist/client/index.js",
"./codec": "./dist/codec/index.js",
"./protobufs": "./dist/protobufs/index.js",
"./registry": "./dist/registry/index.js",
"./wallet": "./dist/wallet/index.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "pnpm clean && tsc && tsc-alias",
"dev": "concurrently \"tsc -w\" \"tsc-alias -w\"",
"gen:protobufs": "node scripts/gen-protobufs.mjs",
"gen:registry": "node scripts/gen-registry.mjs",
"lint": "eslint **/*.ts",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:suite": "pnpm lint && pnpm typecheck && pnpm test",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"@bufbuild/protobuf": "^1.2.0",
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^2.0.0",
"@scure/base": "^1.1.3",
"@scure/bip32": "^1.3.2",
"@scure/bip39": "^1.2.1",
"@walletconnect/legacy-client": "^2.0.0",
"@walletconnect/sign-client": "^2.8.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@bufbuild/buf": "1.18.0-1",
"@bufbuild/protobuf": "^1.2.0",
"@bufbuild/protoc-gen-es": "^1.2.0",
"@bufbuild/protoplugin": "^1.2.0",
"@keplr-wallet/types": "^0.11.62",
"@metamask/providers": "^14.0.2",
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^2.0.0",
"@scure/base": "^1.1.3",
"@scure/bip32": "^1.3.2",
"@scure/bip39": "^1.2.1",
"@types/degit": "^2.8.3",
"@types/lodash-es": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@walletconnect/legacy-client": "^2.0.0",
"@walletconnect/legacy-types": "^2.0.0",
"@walletconnect/sign-client": "^2.8.0",
"@walletconnect/types": "^2.8.0",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"degit": "^2.8.4",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"glob": "^10.2.3",
"json-schema-to-typescript": "^13.1.1",
"lodash-es": "^4.17.21",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"rimraf": "^5.0.0",
"tsc-alias": "^1.8.6",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
}
}