-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.92 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
{
"name": "@scrow/hooks",
"version": "0.5.1",
"description": "React hooks library for BitEscrow SDK.",
"main": "index.js",
"author": "Christopher Scott",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bitescrow/hooks.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"files": [
"README.md",
"LICENSE",
"dist",
"src"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./contract": {
"import": "./dist/contract/index.js",
"types": "./dist/contract/index.d.ts"
},
"./client": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
},
"./deposit": {
"import": "./dist/deposit/index.js",
"types": "./dist/deposit/index.d.ts"
},
"./draft": {
"import": "./dist/draft/index.js",
"types": "./dist/draft/index.d.ts"
},
"./signer": {
"import": "./dist/signer/index.js",
"types": "./dist/signer/index.d.ts"
},
"./vm": {
"import": "./dist/vm/index.js",
"types": "./dist/vm/index.d.ts"
},
"./witness": {
"import": "./dist/witness/index.js",
"types": "./dist/witness/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "vite --cors web",
"load": "tsx --tsconfig test/tsconfig.json",
"release": "yarn build",
"scratch": "yarn load test/scratch.ts"
},
"dependencies": {
"@cmdcode/buff": "^2.2.5",
"@cmdcode/signer": "^1.4.7",
"@cmdcode/use-store": "^1.1.2",
"@scrow/sdk": "^0.15.0",
"swr": "^2.2.5"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.2.25",
"react": "^18.3.1",
"typescript": "^5.4.5"
}
}