-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.78 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
{
"name": "evm-effect",
"private": true,
"type": "module",
"packageManager": "bun@1.3.0",
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"effect": "^3.21.0",
"@effect/experimental": "^0.60.0",
"@effect/platform": "^0.96.0",
"@effect/platform-bun": "^0.89.0",
"@types/bun": "1.3.0",
"typescript": "5.9.3",
"fast-check": "^4.3.0",
"@noble/hashes": "^2.0.1",
"ts-dedent": "^2.2.0"
}
},
"scripts": {
"clean": "./clean.sh",
"codegen": "bun --recursive --parallel run codegen",
"build": "turbo build",
"dev": "turbo dev",
"check": "turbo check",
"check-recursive": "bun --recursive exec tsc -b tsconfig.json",
"test": "turbo test",
"ci:version": "changeset version && bun update",
"ci:publish": "bun run build && bun scripts/publish-bun.mjs && changeset tag",
"changeset-version": "bun run ci:version",
"changeset-publish": "bun run ci:publish",
"lint": "biome check .",
"lint:fix": "biome check . --fix --unsafe"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.30.0",
"@effect/build-utils": "^0.8.9",
"@effect/language-service": "latest",
"@manypkg/cli": "^0.25.1",
"@types/bun": "catalog:",
"@types/node": "^24.12.2",
"babel-plugin-annotate-pure-calls": "^0.5.0",
"glob": "^11.1.0",
"knip": "^5.88.1",
"msgpackr": "^1.11.9",
"tsx": "^4.21.0",
"turbo": "^2.9.5",
"typescript": "^5.9.3"
},
"dependencies": {
"@noble/curves": "^2.0.1",
"c-kzg": "^4.1.0",
"zod": "^4.3.6"
}
}