-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.05 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.05 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
{
"name": "libs",
"version": "0.0.1",
"author": "Meek Msaki",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun build:eth-types && bun build:jsonrpc && bun build:eth-rpc && bun build:engine-rpc && bun build:flashbots-rpc && bun build:buildernet-rpc",
"build:jsonrpc": "cd packages/jsonrpc && bun run build",
"build:eth-rpc": "cd packages/eth-rpc && bun run build",
"build:eth-types": "cd packages/eth-types && bun run build",
"build:engine-rpc": "cd packages/engine-rpc && bun run build",
"build:flashbots-rpc": "cd packages/flashbots-rpc && bun run build",
"build:buildernet-rpc": "cd packages/buildernet-rpc && bun run build",
"publish:jsonrpc": "cd packages/jsonrpc && bun run publish",
"publish:eth-rpc": "cd packages/eth-rpc && bun run publish",
"publish:eth-types": "cd packages/eth-types && bun run publish",
"publish:engine-rpc": "cd packages/engine-rpc && bun run publish",
"publish:flashbots-rpc": "cd packages/flashbots-rpc && bun run publish",
"publish:buildernet-rpc": "cd packages/buildernet-rpc && bun run publish",
"format:jsonrpc": "cd packages/jsonrpc && bun run format",
"format:eth-rpc": "cd packages/eth-rpc && bun run format",
"format:eth-types": "cd packages/eth-types && bun run format",
"format:engine-rpc": "cd packages/engine-rpc && bun run format",
"format:flashbots-rpc": "cd packages/flashbots-rpc && bun run format",
"format:buildernet-rpc": "cd packages/buildernet-rpc && bun run format",
"start:mcpwallet": "cd packages/mcpwallet && bun run start",
"dev:mcpwallet": "cd packages/mcpwallet && bun run dev",
"stdio:mcpwallet": "cd packages/mcpwallet && bun run stdio",
"build:mcpwallet": "cd packages/mcpwallet && bun run build",
"docs:dev": "vocs dev",
"docs:build": "vocs build",
"docs:preview": "vocs preview"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/cli": "2.29.8",
"@types/bun": "latest"
},
"dependencies": {
"react": "latest",
"react-dom": "latest",
"vocs": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}