-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.59 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
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
{
"name": "@cartesi/client",
"description": "Cartesi viem extension",
"version": "2.0.0-alpha.35",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cartesi/rollups-ts"
},
"dependencies": {
"@cartesi/rpc": "workspace:*",
"abitype": "^1.3.0",
"p-retry": "^8.0.0"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@cartesi/wagmi-plugin": "workspace:*",
"@types/node": "catalog:",
"@vitest/coverage-v8": "^4.1.10",
"@wagmi/cli": "^2.10.0",
"npm-run-all": "^4.1.5",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "^4.1.10"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"./abi": {
"import": {
"types": "./dist/rollups.d.ts",
"import": "./dist/rollups.js"
},
"require": {
"types": "./dist/rollups.d.cts",
"require": "./dist/rollups.cjs"
}
},
"./actions": {
"import": {
"types": "./dist/actions/index.d.ts",
"import": "./dist/actions/index.js"
},
"require": {
"types": "./dist/actions/index.d.cts",
"require": "./dist/actions/index.cjs"
}
},
"./chains": {
"import": {
"types": "./dist/chains.d.ts",
"import": "./dist/chains.js"
},
"require": {
"types": "./dist/chains.d.cts",
"require": "./dist/chains.cjs"
}
}
},
"files": [
"LICENSE",
"NOTICE",
"dist/**"
],
"peerDependencies": {
"viem": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "run-s codegen compile",
"codegen": "wagmi generate",
"compile": "tsdown",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"dev": "tsdown --watch",
"lint": "biome check",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
}
}