-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "@vanya2h/utils-wagmi",
"version": "0.7.0",
"description": "Wagmi/viem utilities for working with accounts, public clients and wallet clients",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsup",
"check-types": "tsc -b --noEmit",
"clean": "rimraf ./dist",
"dev": "tsup --watch --silent",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm run build",
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@vanya2h/utils": "workspace:*",
"@wagmi/core": "^2.16.0",
"viem": "^2.48.1"
},
"devDependencies": {
"@vanya2h/eslint-config": "workspace:*",
"@vanya2h/typescript-config": "workspace:*",
"eslint": "^9.21.0",
"jiti": "^2.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"vitest": "^3.0.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}