-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
100 lines (100 loc) · 2.5 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@tevm/cli",
"version": "1.0.0-next.127",
"license": "MIT",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./tevm-cli": {
"import": {
"types": "./dist/tevm-cli.d.ts",
"default": "./dist/tevm-cli.js"
},
"require": {
"types": "./dist/tevm-cli.d.cts",
"default": "./dist/tevm-cli.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tevm-cli": "dist/tevm-cli.js"
},
"files": [
"dist",
"src",
"fixtures"
],
"scripts": {
"all": "bun nx build:app && bun typecheck && bun run lint && bun run format && bun run test:coverage && bun run lint:deps && bun run lint:package",
"build:dist": "tsup",
"build:types": "tsup --dts-only",
"dev": "tsup --watch --onSuccess='bun run start'",
"format": "rome format . --write",
"format:check": "rome format .",
"lint": "rome check . --apply-unsafe",
"lint:check": "rome check . --verbose",
"lint:deps": "bunx depcheck",
"//lint:package": "bunx publint --strict && attw --pack",
"start": "node dist/tevm-cli.js",
"test": "vitest --coverage",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@tanstack/react-query": "^5.56.2",
"@tevm/actions": "workspace:^",
"@tevm/common": "workspace:^",
"@tevm/jsonrpc": "workspace:^",
"@tevm/memory-client": "workspace:^",
"@tevm/server": "workspace:^",
"@tevm/utils": "workspace:^",
"@types/ink-select-input": "^3.0.5",
"@types/object-hash": "^3.0.6",
"figures": "^6.1.0",
"fs-extra": "^11.2.0",
"ink": "^5.0.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"object-hash": "^3.0.0",
"pastel": "^3.0.0",
"react": "^18.3.1",
"tsup": "^8.3.0",
"unique-names-generator": "^4.7.1",
"zod": "^3.23.8",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@tevm/tsconfig": "workspace:^",
"@tevm/tsupconfig": "workspace:^",
"@types/fs-extra": "^11.0.4",
"@types/react": "^18.3.9",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"chalk": "^5.3.0",
"ink-testing-library": "^4.0.0",
"rome": "^12.1.3",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=16"
}
}