-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"name": "@eth-optimism/autorelayer-interop",
"repository": {
"type": "git",
"url": "https://github.com/ethereum-optimism/ecosystem.git",
"directory": "apps/autorelayer-interop"
},
"homepage": "https://github.com/ethereum-optimism/ecosystem/tree/main/apps/autorelayer-interop#readme",
"bugs": {
"url": "https://github.com/ethereum-optimism/ecosystem/issues"
},
"version": "0.0.25",
"type": "module",
"files": [
"dist"
],
"main": "./dist/app.js",
"types": "./dist/app.d.ts",
"exports": {
".": {
"types": "./dist/app.d.ts",
"import": "./dist/app.js"
}
},
"scripts": {
"build": "pnpm clean && tsc && resolve-tspaths",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"docker:up": "docker compose --profile app up -d",
"docker:down": "docker compose down",
"lint": "eslint \"**/*.{ts,tsx}\" && pnpm prettier --check \"**/*.{ts,tsx}\" --ignore-path \"../../.prettierignore\"",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix && pnpm prettier \"**/*.{ts,tsx}\" --write --loglevel=warn --ignore-path \"../../.prettierignore\"",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc"
},
"dependencies": {
"commander": "^13.1.0",
"viem": "2.17.9",
"@eth-optimism/utils-app": "workspace:*",
"@eth-optimism/viem": "workspace:*"
},
"peerDependencies": {
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
}
}