-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
80 lines (80 loc) · 1.93 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
78
79
80
{
"name": "@evmts/cli",
"version": "0.8.0",
"private": false,
"description": "Cli commands for Evmts",
"keywords": [
"cli",
"solidity",
"forge",
"foundry",
"sol",
"typescript",
"web3",
"blockchain"
],
"repository": {
"type": "git",
"url": "https://github.com/evmts/evmts-monorepo.git",
"directory": "cli"
},
"license": "MIT",
"contributors": [
"Will Cory <[email protected]>"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"evmts": "dist/run.js"
},
"files": [
"dist",
"types"
],
"scripts": {
"//test": "vitest --coverage",
"//test:coverage": "vitest run --coverage",
"//test:run": "vitest run",
"//test:ui": "vitest --ui",
"build": "pnpm build:dist && pnpm build:types",
"build:dist": "tsup-node",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rm -rf node_modules && rm -rf artifacts && rm -rf dist && rm -rf cache",
"format": "rome format . --write",
"format:check": "rome format .",
"lint": "rome check . --apply-unsafe",
"lint:check": "rome check . --verbose",
"package:up": "pnpm up --latest"
},
"dependencies": {
"@evmts/bundler": "workspace:^",
"@evmts/config": "workspace:^",
"@evmts/core": "workspace:^",
"@types/resolve": "^1.20.2",
"cac": "^6.7.14",
"dotenv": "^16.3.1",
"glob": "^10.3.3",
"isomorphic-fetch": "^3.0.0",
"resolve": "^1.22.4"
},
"devDependencies": {
"@evmts/tsconfig": "workspace:^",
"@types/isomorphic-fetch": "^0.0.36",
"@types/node": "^20.5.7",
"@vitest/coverage-v8": "^0.34.3",
"@vitest/ui": "^0.34.3",
"@wagmi/cli": "^1.3.0",
"abitype": "^0.9.8",
"fixturez": "^1.1.0",
"rome": "^12.1.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.3",
"zod": "^3.22.2"
},
"publishConfig": {
"access": "public"
}
}