nebula/libs/es-client/package.json
2025-01-07 15:23:53 -05:00

84 lines
2.4 KiB
JSON

{
"name": "@onsonr/es",
"version": "0.0.3",
"private": false,
"packageManager": "pnpm@8.3.0",
"sideEffects": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist"
],
"jsdelivr": "dist/client/index.js",
"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.6",
"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.6",
"@walletconnect/types": "2.8.6",
"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"
}
}