-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.31 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@valorem-labs-inc/react-hooks",
"version": "0.0.8",
"repository": {
"type": "git",
"url": "https://github.com/valorem-labs-inc/react-hooks.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./context": {
"types": "./dist/context/index.d.ts",
"default": "./dist/context/index.mjs"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"default": "./dist/hooks/index.mjs"
},
"./lib": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.mjs",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"/context",
"/hooks",
"/lib",
"/dist"
],
"scripts": {
"build": "pnpm clean && pnpm generate && pnpm tsup",
"ci:release": "pnpm build && pnpm changeset publish",
"clean": "rm -rf ./dist",
"codegen": "rm -rf ./src/lib/codegen && wagmi generate && npx buf generate",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"gen-docs": "typedoc",
"generate": "rm -rf ./src/lib/codegen && pnpm generate:wagmi && pnpm generate:grpc",
"generate:grpc": "npx buf generate",
"generate:wagmi": "wagmi generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "git submodule update --init --recursive && pnpm codegen",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 vitest run --coverage"
},
"prettier": "@vercel/style-guide/prettier",
"devDependencies": {
"@bufbuild/protoc-gen-es": "^1.6.0",
"@changesets/cli": "^2.27.1",
"@connectrpc/protoc-gen-connect-query": "0.5.3",
"@tanstack/query-core": "^4.36.1",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.11.2",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vercel/style-guide": "^5.1.0",
"@vitest/coverage-v8": "^1.1.3",
"@wagmi/cli": "^1.5.2",
"@wagmi/core": "^1.4.12",
"abitype": "0.8.7",
"connectkit": "^1.6.0",
"eslint": "^8.56.0",
"eslint-config-canonical": "^42.8.0",
"happy-dom": "^12.10.3",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
"prettier": "^3.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"siwe": "^2.1.4",
"tsup": "^8.0.1",
"typedoc": "^0.25.4",
"typedoc-plugin-missing-exports": "^2.1.0",
"vitest": "^1.1.3"
},
"peerDependencies": {
"@bufbuild/buf": "^1.28.1",
"@bufbuild/protobuf": "^1.6.0",
"@connectrpc/connect": "^1.2.0",
"@connectrpc/connect-query": "0.5.3",
"@connectrpc/connect-web": "^1.2.0",
"@tanstack/react-query": "^4.36.1",
"@valorem-labs-inc/sdk": "^0.0.12-alpha.2",
"@wagmi/core": "^1.4.13",
"abitype": "0.8.7",
"connectkit": "^1.5.3",
"react": "17.x || 18.x",
"react-dom": "17.x || 18.x",
"siwe": "^2.1.4",
"typescript": "^5.3.0",
"viem": "^1.21.4",
"wagmi": "^1.4.12",
"zod": "^3.22.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"packageManager": "pnpm@8.12.1",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"@types/react": "^18.2.48",
"@wagmi/core": "^1.4.13",
"viem": "^1.21.4"
}
}
}