-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
264 lines (264 loc) · 12 KB
/
Copy pathpackage.json
File metadata and controls
264 lines (264 loc) · 12 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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
{
"name": "seed",
"private": true,
"scripts": {
"test": "pnpm web:test && pnpm shared:test && pnpm desktop:test:unit",
"shared:test": "pnpm --filter @shm/shared test",
"format:check": "pnpm -r --parallel run format:check && (cd agents && bun run format:check) && (cd vault && bun run format:check)",
"typecheck": "pnpm -r --parallel run typecheck",
"security:check": "pnpm audit",
"security:check:dev": "pnpm audit --dev",
"format:write": "pnpm -r --parallel run format:write && (cd agents && bun run format:write) && (cd vault && bun run format:write)",
"web": "cd frontend/apps/web && SEED_SIGNING_ENABLED=true SEED_BASE_URL=\"http://localhost:3000\" DAEMON_HTTP_PORT=58001 DAEMON_FILE_URL=\"http://localhost:58001/ipfs\" pnpm dev",
"web:standalone": "concurrently -n \"BACKEND,WEB\" -c \"blue,green\" -p \"[{name}]\" \"./dev run-backend -- -http.port=53001 -grpc.port=53002 -p2p.port=53000 -data-dir=$PWD/data/standalone\" \"SEED_BASE_URL=\\\"http://localhost:3099\\\" PORT=3099 SEED_IDENTITY_ENABLED=true DAEMON_HTTP_URL=http://localhost:53001 VITE_DESKTOP_HTTP_PORT=53001 VITE_DESKTOP_GRPC_PORT=53002 VITE_DESKTOP_P2P_PORT=53000 pnpm web\"",
"web:dev": "pnpm web:prod && cd frontend/apps/web && SEED_SIGNING_ENABLED=true SEED_BASE_URL=\"http://localhost:3000\" DAEMON_HTTP_PORT=58001 DAEMON_FILE_URL=\"http://localhost:58001/ipfs\" pnpm start",
"web:dev:standalone": "concurrently -n \"BACKEND,WEB\" -c \"blue,green\" -p \"[{name}]\" \"./dev run-backend -- -http.port=53001 -grpc.port=53002 -p2p.port=53000 -data-dir=$PWD/.dev-data/standalone\" \"SEED_BASE_URL=\\\"http://localhost:3099\\\" PORT=3099 SEED_IDENTITY_ENABLED=true SEED_IDENTITY_DEFAULT_ORIGIN=\\\"http://localhost:3000\\\" DAEMON_HTTP_URL=http://localhost:53001 VITE_DESKTOP_HTTP_PORT=53001 VITE_DESKTOP_GRPC_PORT=53002 VITE_DESKTOP_P2P_PORT=53000 pnpm web:start --host\"",
"web:prod": "pnpm --filter @shm/web build",
"web:start": "cd frontend/apps/web && pnpm start:prod",
"web:dev:cross-origin": "pnpm web:prod && concurrently -c \"blue,green\" -p \"[{name}]\" \"SEED_IDENTITY_ENABLED=true PORT=3099 SEED_BASE_URL=\\\"http://localhost:3099\\\" SEED_IDENTITY_DEFAULT_ORIGIN=\\\"http://localhost:3000\\\" pnpm web:start\" \"SEED_SIGNING_ENABLED=true pnpm web:start\"",
"web:extract": "DISABLE_EXTRACTION=false pnpm --filter @shm/site dev",
"web:test": "pnpm --filter @shm/web test",
"test:integration": "cd tests && pnpm test",
"test:integration:skip-build": "cd tests && pnpm test:skip-build",
"web:perf": "pnpm --filter @shm/perf-web start --url http://localhost:3000 --app web",
"notify": "cd frontend/apps/notify && pnpm dev",
"notify:standalone": "concurrently -n \"BACKEND,NOTIFY\" -c \"blue,magenta\" -p \"[{name}]\" \"./dev run-backend -- -http.port=54001 -grpc.port=54002 -p2p.port=54000 -data-dir=$PWD/data/notify-standalone\" \"DATA_DIR=$PWD/data/notify-standalone SEED_BASE_URL=\\\"http://localhost:3061\\\" PORT=3061 DAEMON_HTTP_URL=http://localhost:54001 DAEMON_FILE_URL=http://localhost:54001/ipfs DAEMON_HTTP_PORT=54001 pnpm notify\"",
"notify:build": "cd frontend/apps/notify && pnpm build",
"notify:prod": "cd frontend/apps/notify && pnpm start:prod",
"desktop": "pnpm --filter @shm/desktop dev",
"types:suppress": "node scripts/suppress-ts-errors.mjs",
"types:count": "node scripts/count-ts-directives.mjs",
"types:dashboard": "mkdir -p reports/ts-directives && echo '[]' > reports/ts-directives/existing-data.json && node scripts/count-ts-directives.mjs --output=json --output-file=reports/ts-directives/current.json && node scripts/generate-ts-dashboard.mjs",
"desktop:make": "pnpm --filter @shm/desktop make",
"desktop:package": "pnpm --filter @shm/desktop package",
"desktop:test:package": "pnpm --filter @shm/desktop package:test",
"desktop:publish": "pnpm --filter @shm/desktop run publish",
"desktop:test": "pnpm --filter @shm/desktop test",
"desktop:test:only": "pnpm --filter @shm/desktop test:only",
"desktop:test:unit": "pnpm --filter @shm/desktop test:unit",
"desktop:devtools": "pnpm --filter @shm/desktop devtools",
"desktop:perf": "pnpm --filter @shm/performance test",
"explore": "pnpm --filter @shm/explore dev",
"explore:build": "pnpm --filter @shm/explore build",
"watch": "pnpm -r --parallel run watch",
"docs": "pnpm --filter @shm/docs start",
"perf:dash": "pnpm --filter @shm/perf-web generate-index && pnpm --filter @shm/performance-dashboard copy-results && pnpm --filter @shm/performance-dashboard dev",
"perf:dash:build": "pnpm --filter @shm/performance-dashboard copy-results && pnpm --filter @shm/performance-dashboard build",
"landing": "pnpm --filter @shm/landing dev",
"landing:build": "pnpm --filter @shm/landing build",
"landing:preview": "pnpm --filter @shm/landing preview",
"landing:perf": "pnpm --filter @shm/perf-web start --url http://localhost:4173 --app landing",
"cli:publish": "echo 'CLI publishing is now automated via GitHub Actions on push to main. To publish manually, run: cd frontend/apps/cli && pnpm build && pnpm publish --no-git-checks' && exit 1"
},
"repository": "github:mintterhypermedia/mintter",
"packageManager": "pnpm@10.32.0",
"dependencies": {
"@babel/runtime": "7.29.2",
"@bufbuild/protoc-gen-es": "1.10.0",
"@connectrpc/protoc-gen-connect-es": "1.4.0",
"@radix-ui/react-slot": "^1.2.3",
"cross-env": "7.0.3",
"prettier": "3.1.1",
"react-native": "0.75.2",
"react-native-svg": "15.6.0",
"satori": "0.12.2",
"svg2img": "1.0.0-beta.2",
"typescript": "5.8.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@ipshipyard/node-datachannel",
"@sentry/cli",
"@sentry/profiling-node",
"better-sqlite3",
"canvas",
"electron",
"electron-winstaller",
"esbuild",
"fs-xattr",
"macos-alias",
"sharp"
],
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"prettier": "3.1.1",
"zod": "3.25.76",
"rollup": "4.59.0",
"prosemirror-model": "1.25.4",
"prosemirror-state": "1.4.4",
"prosemirror-transform": "1.10.4",
"prosemirror-view": "1.41.3",
"backslash": "<=0.2.0",
"chalk": "4.1.2",
"chalk-template": "<=1.1.0",
"color-convert": "<=2.0.1",
"color-name": "<=1.1.4",
"color-string": "<=1.9.1",
"debug": "<=4.4.1",
"error-ex": "<=1.3.2",
"has-ansi": "<=6.0.0",
"is-arrayish": "<=0.3.2",
"simple-swizzle": "<=0.2.2",
"supports-color": "7.2.0",
"supports-hyperlinks": "<=3.1.0",
"ansi-regex": "5.0.1",
"ansi-styles": "4.3.0",
"slice-ansi": "3.0.0",
"string-width": "4.2.3",
"strip-ansi": "6.0.1",
"wrap-ansi": "7.0.0",
"cliui": "7.0.4",
"unist-util-visit": "4.1.2",
"unist-util-visit-parents": "5.1.3",
"unist-util-is": "5.2.1",
"tar": "7.5.19",
"fast-xml-parser@^4": "5.7.2",
"fast-xml-parser@^5": "5.7.2",
"fast-xml-builder": "1.1.7",
"fast-uri": "3.1.4",
"minimatch@^3": "3.1.4",
"minimatch@^5": "5.1.8",
"minimatch@^7": "7.4.8",
"minimatch@^9": "9.0.7",
"minimatch@^10": "10.2.4",
"cross-spawn": "7.0.6",
"shell-quote": "1.9.0",
"basic-ftp": "5.3.1",
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"linkifyjs": "4.3.2",
"valibot": "1.2.0",
"hono": "4.12.27",
"dompurify": "3.4.12",
"katex": "0.16.42",
"@babel/plugin-transform-modules-systemjs": "7.29.4",
"@babel/runtime": "7.29.2",
"electron": "39.8.10",
"prosemirror-dev-tools>nanoid": "3.3.11",
"@hono/node-server": "2.0.10",
"@modelcontextprotocol/sdk": "1.27.1",
"@remix-run/router": "1.23.2",
"@trpc/server": "10.45.4",
"rfc6902": "5.2.0",
"nodemailer": "7.0.13",
"happy-dom": "20.8.9",
"flatted": "3.4.2",
"undici": "6.27.0",
"handlebars": "4.7.9",
"node-forge": "1.4.0",
"path-to-regexp@<0.1.13": "0.1.13",
"path-to-regexp@>=8.0.0 <8.4.0": "8.4.0",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"@xmldom/xmldom": "0.8.13",
"tmp": "0.2.7",
"turbo-stream": "3.2.0",
"js-cookie": "3.0.7",
"got@<11.8.5": "11.8.5",
"phin@<3.7.1": "3.7.1",
"@sentry/browser@>=8.0.0-alpha.1 <8.33.0": "8.33.0",
"@sentry/remix@>=8.10.0 <8.49.0": "8.49.0",
"@sentry/node@>=8.10.0 <8.49.0": "8.49.0",
"esbuild@<=0.24.2": "0.25.0",
"estree-util-value-to-estree@<3.3.3": "3.3.3",
"cookie@<0.7.0": "0.7.0",
"jsondiffpatch@<0.7.2": "0.7.2",
"qs@>=6.7.0 <=6.14.1": "6.14.2",
"markdown-it@>=13.0.0 <14.1.1": "14.1.1",
"ajv@<6.14.0": "6.14.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": "8.18.0",
"file-type@>=13.0.0 <21.3.1": "21.3.2",
"nodemailer@<8.0.4": "8.0.4",
"brace-expansion@<1.1.13": "1.1.16",
"brace-expansion@>=2.0.0 <2.0.3": "2.1.2",
"brace-expansion@>=4.0.0 <5.0.5": "5.0.7",
"yaml@>=1.0.0 <1.10.3": "1.10.3",
"yaml@>=2.0.0 <2.8.3": "2.8.3",
"vite@<=6.4.1": "6.4.2",
"hono@<4.12.12": "4.12.27",
"nodemailer@<=8.0.4": "8.0.5",
"hono@>=4.0.0 <=4.12.11": "4.12.27",
"@hono/node-server@<1.19.13": "2.0.10",
"fast-xml-parser@>=5.0.0 <5.5.7": "5.5.7",
"follow-redirects@<=1.15.11": "1.16.0",
"dompurify@<=3.3.3": "3.4.12",
"postcss@<8.5.10": "8.5.13",
"dompurify@<3.4.0": "3.4.12",
"dompurify@>=1.0.10 <3.4.0": "3.4.12",
"dompurify@>=3.0.1 <3.4.0": "3.4.12",
"fast-xml-parser@<5.7.0": "5.7.2",
"hono@<4.12.18": "4.12.27",
"ip-address@<=10.1.0": "10.1.1",
"hono@<4.12.16": "4.12.27",
"ws@>=8.0.0 <8.20.1": "8.20.1",
"@tootallnate/once@<2.0.1": "2.0.1",
"uuid@<11.1.1": "11.1.1",
"qs@>=6.11.1 <=6.15.1": "6.15.2",
"hono@<4.12.21": "4.12.27",
"mermaid@>=11.0.0-alpha.1 <=11.14.0": "11.15.0",
"brace-expansion@>=5.0.0 <5.0.6": "5.0.7",
"joi@<17.13.4": "17.13.4",
"ws@>=8.0.0 <8.21.0": "8.21.0",
"ws@>=7.0.0 <7.5.11": "7.5.11",
"ws@>=6.0.0 <6.2.4": "6.2.4",
"form-data@>=4.0.0 <4.0.6": "4.0.6",
"tar@<=7.5.15": "7.5.19",
"vite@<=6.4.2": "6.4.3",
"@babel/core@<=7.29.0": "7.29.6",
"nodemailer@<=8.0.8": "8.0.9",
"nodemailer@<=8.0.7": "8.0.8",
"dompurify@<3.4.7": "3.4.12",
"dompurify@<=3.4.5": "3.4.12",
"dompurify@<3.4.9": "3.4.12",
"dompurify@>=3.0.0 <=3.4.7": "3.4.12",
"dompurify@<=3.4.6": "3.4.12",
"markdown-it@<=14.1.1": "14.2.0",
"@opentelemetry/core@<2.8.0": "2.8.0",
"@opentelemetry/sdk-trace-base@<2.7.0": "2.7.0",
"hono@<4.12.25": "4.12.27",
"nodemailer@<=9.0.0": "9.0.1",
"dompurify@<=3.4.10": "3.4.12",
"undici@<6.27.0": "6.27.0",
"hono@<4.12.14": "4.12.27",
"linkify-it@<=5.0.0": "5.0.1",
"js-yaml@<3.15.0": "3.15.0",
"gray-matter@4.0.3>js-yaml": "3.15.0",
"js-yaml@>=4.0.0 <=4.1.1": "4.2.0",
"ws": "8.21.0",
"js-yaml": "5.2.1",
"esbuild": "0.27.2",
"fast-xml-parser": "5.7.2",
"file-type@>=20.0.0 <=21.3.1": "21.3.2",
"brace-expansion@<1.1.16": "1.1.16",
"brace-expansion@>=2.0.0 <2.1.2": "2.1.2",
"brace-expansion@>=5.0.0 <5.0.7": "5.0.7",
"morgan": "1.11.0",
"body-parser@<1.20.6": "1.20.6",
"body-parser@>=2.0.0 <2.3.0": "2.3.0",
"svgo@>=4.0.0 <4.0.2": "4.0.2"
},
"patchedDependencies": {
"electron-installer-redhat": "patches/electron-installer-redhat.patch"
}
},
"devDependencies": {
"@types/bun": "latest",
"@types/glob": "^8.1.0",
"@types/jscodeshift": "^17.3.0",
"asar": "^3.2.0",
"babel-plugin-react-native-web": "0.19.9",
"concurrently": "8.2.1",
"jscodeshift": "^17.3.0",
"lighthouse": "^12.4.0",
"playwright": "1.57.0",
"prettier-plugin-tailwindcss": "0.6.14",
"ts-node": "10.9.1",
"vitest": "4.1.8"
},
"engines": {
"node": ">=18.0.0"
}
}