-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "@yog4a/viem",
"description": "Personal encapsulation module for viem",
"version": "1.0.8",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"scripts": {
"build": "tsdown",
"build:patch": "npm version patch && npm run build",
"build:minor": "npm version minor && npm run build",
"build:major": "npm version major && npm run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"update:check": "npx npm-check-updates",
"update:install": "npx npm-check-updates -u && npm install",
"tags": "git push --follow-tags"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsdown": "^0.21.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"viem": "^2.47.6"
},
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./chains": {
"import": "./dist/chains.mjs",
"require": "./dist/chains.cjs"
},
"./clients": {
"import": "./dist/clients.mjs",
"require": "./dist/clients.cjs"
},
"./extensions": {
"import": "./dist/extensions.mjs",
"require": "./dist/extensions.cjs"
}
}
}