-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
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
{
"name": "@layr-labs/zeus",
"version": "1.2.3",
"description": "web3 deployer / metadata manager",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"test-coverage": "TS_NODE_PROJECT=tsconfig.json NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" NODE_NO_WARNINGS=1 npx jest --coverage",
"test": "TS_NODE_PROJECT=tsconfig.json NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" NODE_NO_WARNINGS=1 npx jest --coverage --runInBand",
"test-debug": "TS_NODE_PROJECT=tsconfig.json NODE_NO_WARNINGS=1 node --experimental-vm-modules --inspect-brk ./node_modules/jest/bin/jest",
"start": "node dist/index.js",
"debug": "node --inspect-brk dist/index.js",
"lint": "eslint .",
"prepack": "npm run build-prod",
"lint-fix": "eslint . --fix",
"watch": "webpack --watch -c webpack.config.dev.cjs",
"build-dev": "webpack -c webpack.config.dev.cjs",
"build-prod": "webpack -c webpack.config.prod.cjs"
},
"bin": {
"zeus": "./dist/bundle.cjs"
},
"files": [
"dist/bundle.cjs",
"package.json",
"LICENSE"
],
"author": "Eigen Labs, Inc.",
"license": "BSL",
"dependencies": {
"@ethers-ext/signer-ledger": "^6.0.0-beta.1",
"@foundry-rs/hardhat-anvil": "^0.1.7",
"@inquirer/prompts": "^6.0.1",
"@inquirer/search": "^3.0.0",
"@ledgerhq/errors": "^6.19.1",
"@ledgerhq/hw-app-eth": "^6.42.1",
"@ledgerhq/hw-transport-node-hid": "^6.29.5",
"@safe-global/api-kit": "^2.4.6",
"@types/bun": "^1.1.9",
"@types/express": "^5.0.0",
"@types/node": "^22.5.5",
"@types/semver": "^7.5.8",
"@types/tmp": "^0.2.6",
"ajv": "^6.12.6",
"chalk": "^5.3.0",
"cli-spinners": "^3.2.0",
"clipboardy": "^4.0.0",
"cmd-ts": "^0.13.0",
"compare-versions": "^6.1.1",
"express": "^4.21.0",
"glob": "^11.0.0",
"loading-spinner": "^1.2.1",
"octokit": "^4.0.2",
"open": "^10.1.0",
"ora": "^8.1.0",
"semver": "^7.6.3",
"source-map-support": "^0.5.21",
"tmp": "^0.2.3",
"viem": "^2.21.15",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
"@eslint/js": "^9.13.0",
"@jest/globals": "^29.7.0",
"@types/eslint__js": "^8.42.3",
"@types/prompt-sync": "^4.2.3",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}