-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.75 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "arbitrum-chain-playbook",
"version": "1.0.0",
"description": "An interactive command line tool for Arbitrum chain operations and playbooks",
"homepage": "https://github.com/offchainlabs/arbitrum-chain-playbook#readme",
"bugs": {
"url": "https://github.com/offchainlabs/arbitrum-chain-playbook/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/offchainlabs/arbitrum-chain-playbook.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' src/index.ts",
"build": "tsc",
"dev": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' --watch src/index.ts",
"test": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' --test tests/**/*.ts",
"test:docker": "RUN_DOCKER_TESTS=true node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' --test tests/core/docker/**/*.ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"malicious-mint": "node --loader ts-node/esm scripts/maliciousMintAndWithdraw.ts",
"run:script": "node --import 'data:text/javascript,import { register } from \"node:module\"; import { pathToFileURL } from \"node:url\"; register(\"ts-node/esm\", pathToFileURL(\"./\"));' src/scripted/runScript.ts"
},
"dependencies": {
"@arbitrum/chain-sdk": "^v0.25.3",
"@arbitrum/nitro-contracts": "^3.2.0",
"@arbitrum/sdk": "^4.0.4",
"@openzeppelin/contracts": "^5.4.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"chalk": "4.1.2",
"cli-table3": "^0.6.5",
"docker-cli-js": "^2.10.0",
"dotenv": "^16.4.5",
"glob": "^13.0.0",
"inquirer": "8.2.6",
"js-yaml": "^4.1.1",
"ora": "^9.3.0",
"solc": "^0.8.33",
"viem": "^1.20.0",
"winston": "^3.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/inquirer": "8.2.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "20.10.0",
"chai": "4.3.10",
"prettier": "^3.2.0",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.3.2"
},
"overrides": {
"@uniswap/v2-periphery": {
"@uniswap/lib": "1.1.1"
}
}
}