-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
204 lines (204 loc) · 6.97 KB
/
package.json
File metadata and controls
204 lines (204 loc) · 6.97 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
{
"name": "jeju",
"version": "0.1.0",
"description": "A network for agents and humans",
"type": "module",
"workspaces": [
"packages/*",
"apps/*",
"vendor/*"
],
"overrides": {
"graphql": "15.8.0",
"bigint-buffer": "file:./patches/bigint-buffer-safe",
"ip": "file:./patches/ip-safe",
"commander": "12.0.0",
"elysia": "1.4.21",
"@elysiajs/cors": ">=1.3.1",
"send": "0.19.0",
"mime": "file:./patches/mime-safe",
"xml2js": ">=0.5.0",
"three": "0.180.0",
"@types/three": "0.180.0",
"@noble/curves": "1.9.7",
"viem": "2.43.3",
"typescript": "5.9.3",
"@playwright/test": "1.57.0",
"playwright": "1.57.0",
"playwright-core": "1.57.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"wagmi": "2.18.1",
"@tanstack/react-query": "5.90.12",
"zod": "4.2.1",
"qs": ">=6.13.0",
"node-fetch": "2.7.0",
"ws": ">=8.18.0",
"body-parser": ">=1.20.3",
"cookie": ">=0.7.0",
"path-to-regexp": "0.1.12",
"express>path-to-regexp": "0.1.12",
"express": "4.21.2",
"mime-types": "2.1.35",
"send>mime": "file:./patches/mime-safe",
"fresh": ">=0.5.2",
"debug": ">=2.6.9",
"socket.io-parser": ">=4.2.4",
"nanoid": ">=5.0.9",
"form-data": ">=4.0.0",
"jsondiffpatch": ">=0.7.2",
"engine.io-client": ">=6.6.2",
"parse-duration": ">=2.1.0",
"tmp": ">=0.2.3",
"undici": ">=6.21.0",
"esbuild": ">=0.25.0",
"morgan": ">=1.10.0",
"uglify-js": ">=3.19.0",
"@hapi/hoek": "9.3.0",
"negotiator": ">=0.6.4",
"axios": ">=1.7.4",
"js-yaml": ">=4.0.0",
"socket.io": ">=4.8.0",
"glob": ">=11.0.0",
"hawk": ">=9.0.1",
"ai": ">=5.0.52",
"got": ">=11.8.5",
"tunnel-agent": ">=0.6.0",
"tsup": ">=8.5.1",
"tough-cookie": ">=4.1.3",
"whatwg-url": "7.1.0",
"hardhat": "2.22.18",
"@types/chai": "5.2.3"
},
"scripts": {
"clean": "find apps packages vendor -type d -name node_modules -prune -exec rm -rf {} + && rm -rf node_modules .turbo && bun install",
"postinstall": "cd packages/contracts && forge install --no-git && cd ../.. && bun run \"build:packages\" && bun run packages/deployment/scripts/setup-apps.ts && bun run \"link:cli\"",
"build:packages": "bun run --cwd packages/types build && bun run --cwd packages/contracts build && bun run --cwd packages/kms build",
"link:cli": "bun run --cwd packages/cli build && mkdir -p ~/.bun/bin && ln -sf $PWD/packages/cli/bin/jeju.js ~/.bun/bin/jeju",
"jeju": "bun packages/cli/src/index.ts",
"start": "bun run jeju start",
"dev": "bun run jeju dev",
"build": "bun run jeju build",
"test": "bun run jeju test",
"typecheck": "turbo run typecheck --filter='!./vendor/*' && tsc --noEmit && pyright packages/training/python apps/dws/api && bun run \"typecheck:rust\"",
"typecheck:rust": "bash -c '. $HOME/.cargo/env 2>/dev/null; mkdir -p apps/node/app/dist apps/vpn/app/dist apps/wallet/app/dist; cargo check --manifest-path apps/node/app/src-tauri/Cargo.toml && cargo check --manifest-path apps/vpn/app/src-tauri/Cargo.toml && cargo check --manifest-path apps/wallet/app/src-tauri/Cargo.toml'",
"lint": "biome check --write --unsafe packages apps && ruff check packages apps --exclude packages/workerd --exclude packages/contracts/lib --fix && ruff format packages apps --exclude packages/workerd --exclude packages/contracts/lib && bun run \"lint:rust\"",
"lint:rust": "bash -c '. $HOME/.cargo/env 2>/dev/null; cargo fmt --manifest-path apps/node/app/src-tauri/Cargo.toml && cargo fmt --manifest-path apps/vpn/app/src-tauri/Cargo.toml && cargo fmt --manifest-path apps/wallet/app/src-tauri/Cargo.toml'",
"forge": "cd packages/contracts && forge",
"localnet": "cd packages/deployment && bun run localnet:start",
"localnet:stop": "cd packages/deployment && bun run localnet:stop",
"deploy": "bun run jeju -- deploy",
"deploy:all": "bun run jeju -- start",
"deploy:testnet": "bun run jeju -- deploy testnet-full",
"deploy:mainnet": "bun run jeju -- deploy mainnet",
"ci": "biome check packages apps && bun run typecheck && bun run test"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@elysiajs/static": "^1.4.7",
"@elysiajs/swagger": "^1.3.1",
"@farcaster/miniapp-sdk": "^0.2.1",
"@kitajs/html": "^4.2.11",
"@noble/curves": "^1.9.7",
"@noble/hashes": "^2.0.1",
"@solana/web3.js": "^1.98.4",
"@synthetixio/synpress-cache": "",
"@tensorflow/tfjs": "^4.22.0",
"agent0-sdk": "^0.31.0",
"bigint-buffer": "1.1.5",
"commander": "12.0.0",
"duplexer2": "0.1.4",
"execa": "^9.6.1",
"express": "4.21.2",
"framer-motion": "^12.23.26",
"fs-extra": "11.2.0",
"gradient-string": "2.0.2",
"html-to-image": "^1.11.13",
"jszip": "3.10.1",
"merkletreejs": "^0.6.0",
"mime": "file:./patches/mime-safe",
"node-datachannel": "^0.31.0",
"obscenity": "^0.4.5",
"pino": "^10.1.0",
"posthog-js": "^1.313.0",
"progress": "2.0.3",
"prom-client": "^15.1.3",
"setimmediate": "1.0.5",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"unzip-crx-3": "0.2.0",
"unzipper": "0.10.14",
"viem": "^2.43.3",
"yaku": "1.0.1",
"zod": "^4.2.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@playwright/test": "^1.57.0",
"@scure/bip39": "^2.0.1",
"@synthetixio/synpress": "4.1.1",
"@types/bun": "latest",
"@types/node": "^25.0.3",
"@types/ws": "^8.18.1",
"abitype": "^1.2.3",
"bun-types": "^1.3.5",
"concurrently": "^9.2.1",
"depcheck": "1.4.7",
"knip": "5.74.0",
"playwright": "1.57.0",
"playwright-core": "^1.57.0",
"prettier": "3.5.3",
"prettier-plugin-solidity": "2.1.0",
"pyright": "^1.1.407",
"solhint": "6.0.1",
"tailwindcss": "^4.1.18",
"turbo": "^2.7.2",
"typedoc": "0.28.14",
"typedoc-plugin-markdown": "4.9.0",
"typescript": "5.9.3",
"vitepress": "^1.0.0",
"ws": "^8.18.3"
},
"resolutions": {
"graphql": "15.8.0",
"elysia": "1.4.21",
"@elysiajs/cors": "1.3.1",
"@noble/curves": "1.9.7",
"viem": "2.43.3",
"typescript": "5.9.3",
"@playwright/test": "1.57.0",
"playwright": "1.57.0",
"playwright-core": "1.57.0",
"send": "0.19.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"wagmi": "2.18.1",
"@tanstack/react-query": "5.90.12",
"zod": "4.2.1",
"qs": ">=6.13.0",
"node-fetch": "2.7.0",
"ws": ">=8.18.0",
"body-parser": ">=1.20.3",
"cookie": ">=0.7.0",
"path-to-regexp": "0.1.12",
"fresh": ">=0.5.2",
"debug": ">=2.6.9",
"socket.io-parser": ">=4.2.4",
"nanoid": ">=5.0.9",
"@hapi/hoek": ">=9.0.3",
"hawk": ">=9.0.1",
"tough-cookie": ">=4.1.3",
"whatwg-url": "7.1.0",
"hardhat": "2.22.18",
"@types/chai": "5.2.3"
},
"engines": {
"bun": ">=1.0.0"
},
"packageManager": "bun@1.1.24"
}