-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 KB
/
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": "ser-kit",
"version": "0.3.17",
"author": "Gnosis Guild",
"license": "LGPL-3.0",
"homepage": "https://github.com/gnosisguild/ser-kit",
"packageManager": "bun@1.1.12",
"main": "dist/index.js",
"types": "dist/index.d.ts",
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup --format esm,cjs",
"prepublishOnly": "bun run build",
"check:format": "prettier --list-different .",
"fix:format": "prettier --write .",
"anvil": "anvil --port 8553 --fork-url https://virtual.mainnet.rpc.tenderly.co/65b2a366-4d33-4580-a244-e6bcf0696554",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "^1.1.3",
"@types/wait-on": "^5.3.4",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"wait-on": "^7.2.0"
},
"dependencies": {
"@safe-global/api-kit": "^2.4.2",
"@safe-global/protocol-kit": "^4.0.2",
"@safe-global/safe-core-sdk-types": "^5.0.2",
"viem": "^2.13.8"
}
}