forked from NillionNetwork/client-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.27 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
{
"name": "@nillion/client-react-hooks",
"license": "MIT",
"author": "devsupport@nillion.com",
"version": "0.2.1",
"homepage": "https://nillion.pub/client-ts",
"repository": {
"type": "git",
"url": "git+https://github.com/NillionNetwork/client-ts.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"typecheck": "tsc",
"test": "echo \"@nillion/client-react-hooks has no tests\"",
"clean": "rm -rf dist",
"build": "pnpm clean && node esbuild.config.mjs && tsc -p tsconfig.build.json",
"watch:esbuild": "node esbuild.config.mjs --watch",
"watch:types": "tsc -p tsconfig.build.json --watch",
"build:watch": "pnpm clean && pnpm watch:esbuild & pnpm watch:types"
},
"dependencies": {
"@nillion/client-vms": "workspace:^",
"@tanstack/react-query": "^5.59.20",
"debug": "^4.3.7",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@cosmjs/proto-signing": "^0.32.4",
"@keplr-wallet/types": "^0.12.154",
"@types/debug": "^4.1.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"browserslist": "^4.24.2",
"esbuild-plugin-browserslist": "^0.15.0"
},
"files": ["dist"]
}