-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 944 Bytes
/
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
{
"name": "dskit-eth",
"description": "A lightweight \"Dapp Survival Kit\" to help applications deliver fully functional experiences without sacrificing decentralization, security or privacy",
"version": "0.1.10",
"type": "module",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"prepare": "pnpm build",
"clean": "rm -rf dist",
"test": "pnpm build && mocha"
},
"tsup": {
"dts": true,
"entry": [
"src/index.ts"
],
"format": [
"esm"
]
},
"dependencies": {
"viem": "2.20.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.0",
"@types/node": "^17.0.45",
"chai": "^5.1.1",
"mocha": "^10.7.3",
"prettier": "^2.8.4",
"tslib": "^2.6.0",
"tsup": "^6.6.3",
"typescript": "^5.0.4"
},
"packageManager": "pnpm@8.12.1"
}