-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
69 lines (69 loc) · 3.15 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
{
"name": "@tevm/root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/evmts/tevm-monorepo.git"
},
"license": "MIT",
"contributors": [
"Will Cory <[email protected]>"
],
"type": "commonjs",
"scripts": {
"all": "nx run-many --targets=generate:docs,build:types,typecheck,test:coverage,build:dist,dev:run,build:app",
"all:clean": "bun clean && pnpm i && bun allz",
"all:slow": "nx run-many --targets=generate:docs,build:types,typecheck,test:coverage,build:dist,dev:run,build:app --parallel=1",
"allz": "concurrently 'pnpm i' 'bun lint' 'bun sort-package-json' && nx run-many --targets=generate:docs,build:types,typecheck,test:coverage,build:dist,dev:run,build:app,lint:package,lint:deps,lint,format",
"build": "nx run-many --targets=build:dist,build:app,build:types",
"build:app": "nx run-many --target=build:app",
"build:dist": "nx run-many --target=build:dist",
"build:types": "nx run-many --targets=build:types,typecheck",
"clean": "nx reset && nx run-many --target=clean && rm -rf node_modules && rm -rf .nx",
"e2e": "nx e2e e2e",
"format:check": "biome format .",
"generate:docs": "nx run-many --target=generate:docs",
"lint": "biome check . --write --unsafe && biome format . --write",
"lint:check": "biome check .",
"lint:deps": "bunx depcheck && nx run-many --target=lint:deps",
"lint:package": "nx run-many --target=lint:package",
"release:check": "changeset status --verbose --since=origin/main",
"release:publish": "pnpm install && nx run-many --target=build:dist,build:types --skip-nx-cache && changeset publish",
"release:version": "changeset version && pnpm install --lockfile-only",
"sort-package-json": "sort-package-json package.json apps/*/package.json bundler-packages/*/package.json configs/*/package.json examples/*/package.json experimental/*/package.json extensions/*/package.json packages/*/package.json tevm/package.json",
"sort-package-json:check": "sort-package-json package.json docs/package.json configs/*/package.json examples/*/package.json experimental/*/package.json extensions/*/package.json packages/*/package.json && git diff --exit-code tevm/package.json",
"test": "bun test:run",
"test:coverage": "nx run-many --target=test:coverage --skip-nx-cache",
"test:run": "nx run-many --target=test:run",
"up": "bun x npm-check-updates -ui -ws"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@biomejs/biome": "^1.9.2",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@effect/codemod": "^0.0.16",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"bun-types": "^1.1.29",
"concurrently": "^9.0.1",
"depcheck": "^1.4.7",
"dotenv": "^16.4.5",
"gitmoji-cli": "^9.4.0",
"jscodeshift": "^17.0.0",
"nx": "19.8.2",
"publint": "^0.2.11",
"sort-package-json": "^2.10.1",
"starlight-typedoc": "^0.16.0",
"tsup": "^8.3.0",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "4.2.8",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=18"
}
}