-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.27 KB
/
package.json
File metadata and controls
63 lines (63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@verisphere/protocol",
"version": "0.2.0",
"description": "VeriSphere Protocol SDK \u2014 ABIs, addresses, types, and React hooks",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"generate-abis": "tsx script/generate-abis.ts",
"prebuild": "npm run generate-abis",
"prepublishOnly": "npm run build"
},
"keywords": [
"verisphere",
"blockchain",
"protocol"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/verisphere"
},
"dependencies": {
"viem": "^2.0.0"
},
"peerDependencies": {
"react": "^18.0.0",
"viem": "^2.0.0",
"wagmi": "^2.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"viem": {
"optional": true
},
"wagmi": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^18.3.28",
"react": "^19.2.4",
"tsx": "^4.0.0",
"typescript": "^5.5.4",
"viem": "^2.47.0",
"wagmi": "^3.5.0"
}
}