-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 8.39 KB
/
package.json
File metadata and controls
174 lines (174 loc) · 8.39 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
{
"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",
"typecheck": "pnpm -r --parallel run typecheck",
"security:check": "pnpm audit",
"security:check:dev": "pnpm audit --dev",
"format:write": "pnpm -r --parallel 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.0.2",
"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.0.2",
"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.11",
"fast-xml-parser@^4": "5.5.6",
"fast-xml-parser@^5": "5.5.6",
"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",
"basic-ftp": "5.3.0",
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"linkifyjs": "4.3.2",
"valibot": "1.2.0",
"hono": "4.12.9",
"dompurify": ">=3.3.2",
"katex": "0.16.42",
"@babel/runtime": "7.29.2",
"electron": "35.7.5",
"prosemirror-dev-tools>nanoid": "3.3.11",
"@hono/node-server": "1.19.11",
"@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.24.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"
},
"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.13",
"ts-node": "10.9.1",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=18.0.0"
}
}