-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
275 lines (275 loc) · 10.5 KB
/
Copy pathpackage.json
File metadata and controls
275 lines (275 loc) · 10.5 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
265
266
267
268
269
270
271
272
273
274
275
{
"name": "n-apt",
"version": "0.5.0",
"description": "Visualize FFTs/waterfalls, capture a snapshot or I/Q capture & more, tailored toward N-APT signals. Analyze, learn, record, document & demodulate N-APT signals.",
"license": "Hippocratic-3.0",
"type": "module",
"keywords": [
"N-APT",
"Neuro Automatic Picture Transmission",
"radio waves",
"APT",
"Automatic Picture Transmission",
"sdr visualizer",
"I/Q playback",
"signal processing",
"I/Q capture",
"neurotechnology",
"beat frequencies",
"heterodyning",
"heterodyning in free space",
"heterodyning in an aperture",
"linear interference",
"interference modulation",
"constructive interference",
"brainwaves",
"neuronal waves",
"impedance",
"frequency modulation",
"amplitude modulation",
"time of flight",
"line of sight",
"loW latency",
"feature rich",
"decipher exploitation",
"demodulate n-apt",
"first-person",
"consciousness",
"physiology",
"brain",
"nervous system",
"neuroscience",
"3d human anatomy",
"endpoint map",
"osint",
"sigint"
],
"author": "Ceane Lamerez",
"scripts": {
"setup": "node scripts/setup/create_env.js && cargo fetch",
"decrypt-modules": "npx tsx scripts/encrypted-modules/crypt.ts decrypt",
"decrypt-modules-if-needed": "npx tsx scripts/encrypted-modules/crypt.ts decrypt-if-needed",
"encrypt-modules": "npx tsx scripts/encrypted-modules/crypt.ts encrypt",
"dev:markdown": "vite --config vite.markdown.config.ts --port 5174",
"build:markdown": "vite build --config vite.markdown.config.ts",
"preview:markdown": "vite preview --config vite.markdown.config.ts --port 4174",
"dev": "npm --silent run decrypt-modules-if-needed && npm --silent run build_orchestrator",
"build_orchestrator": "node --import tsx scripts/build/build-orchestrator.tsx",
"cli": "tsx scripts/cli/index.ts",
"build:rust": "cargo build --bin n-apt-backend",
"build:rust:release": "cargo build --release --bin n-apt-backend",
"build:frontend": "vite build",
"build:wasm": "./scripts/build/build_wasm.sh",
"build": "npm run build:rust && npm run build:wasm && npm run build:frontend",
"test": "npm run test:shader:fixtures && jest test/ts && npm run test:shader",
"test:integration": "jest test/integration --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:wasm": "bash ./test/wasm/test_runner.sh",
"lint:wgsl": "npx naga-wasi-cli --bulk-validate src/ts/shaders/*.wgsl",
"lint:katex": "node scripts/lint/katex-lint.cjs",
"test:shader": "npm run test:shader:fixtures && npx vitest run --globals --root . test/ts/shaders/*.test.ts",
"test:shader:fixtures": "node scripts/shaders/generate-test-fixtures.mjs",
"test:rust": "cargo test",
"test:e2e": "playwright test",
"test:all": "npm run test && npm run test:rust && npm run test:integration && npm run test:e2e",
"test:iq-capture": "./scripts/test/integration/run-iq-capture-tests.sh",
"test:iq-capture:install": "./scripts/test/integration/run-iq-capture-tests.sh --install",
"lint": "oxlint --ignore-pattern \"dist/**/*\" --ignore-pattern \"build/**/*\" --ignore-pattern \"docs/**/*\" --ignore-pattern \"target/**/*\" --ignore-pattern \"packages/**/*\" --ignore-pattern \"src/md-preview/components/canvas/ascii-motion-animation.tsx\"",
"lint:fix": "oxlint --fix --ignore-pattern \"dist/**/*\" --ignore-pattern \"build/**/*\" --ignore-pattern \"docs/**/*\" --ignore-pattern \"target/**/*\" --ignore-pattern \"packages/**/*\" --ignore-pattern \"src/md-preview/components/canvas/ascii-motion-animation.tsx\"",
"lint:fix:rust": "cargo fix --bin \"n-apt-backend\" -p n-apt-backend --allow-dirty --allow-no-vcs",
"format": "oxfmt --write 'src/ts/**/*.{ts,tsx,js,jsx,cjs,mjs}' 'test/**/*.{ts,tsx,js,jsx,cjs,mjs}'",
"format:rust": "./scripts/rust/rustfmt-parallel.sh",
"format:rust:fast": "./scripts/rust/rustfmt-fast.sh",
"format:rust:check": "cargo fmt --all -- --check",
"typecheck": "tsc --noEmit --ignoreDeprecations 6.0",
"format:check": "oxfmt --check 'src/ts/**/*.{ts,tsx,js,jsx,cjs,mjs}' 'test/**/*.{ts,tsx,js,jsx,cjs,mjs}'",
"towers:load:redis": "node scripts/redis/load_towers_to_redis.cjs",
"towers:load:all": "node scripts/redis/load_all_towers_to_redis.cjs",
"towers:load:region": "node scripts/redis/load_region_towers.cjs",
"towers:download:opencellid": "node scripts/redis/download_opencellid.cjs",
"towers:download:cached": "node scripts/redis/download_opencellid_cached.cjs",
"towers:process:opencellid": "node scripts/redis/process_opencellid.cjs",
"towers:db:stats": "node scripts/redis/tower_db_manager.cjs stats",
"towers:db:query": "node scripts/redis/tower_db_manager.cjs query",
"towers:db:backup": "node scripts/redis/tower_db_manager.cjs backup",
"redis:start": "./scripts/redis/setup_redis.sh start",
"redis:stop": "./scripts/redis/setup_redis.sh stop",
"redis:restart": "./scripts/redis/setup_redis.sh restart",
"redis:status": "./scripts/redis/setup_redis.sh status",
"redis:persistent": "./scripts/redis/redis_persistent_manager.sh",
"redis:snapshot": "./scripts/redis/redis_persistent_manager.sh snapshot",
"redis:export": "./scripts/redis/redis_persistent_manager.sh export",
"ladle": "ladle serve",
"build-ladle": "ladle build"
},
"dependencies": {
"@chenglou/pretext": "0.0.8",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@google/genai": "2.10.0",
"@huggingface/transformers": "^4.2.0",
"@inkjs/ui": "^2.0.0",
"@mui/icons-material": "9.2.0",
"@mui/material": "9.2.0",
"@radix-ui/react-accordion": "1.2.16",
"@radix-ui/react-alert-dialog": "1.1.19",
"@radix-ui/react-aspect-ratio": "1.1.11",
"@radix-ui/react-avatar": "1.2.2",
"@radix-ui/react-checkbox": "1.3.7",
"@radix-ui/react-collapsible": "1.1.16",
"@radix-ui/react-context-menu": "2.3.3",
"@radix-ui/react-dialog": "1.1.19",
"@radix-ui/react-dropdown-menu": "2.1.20",
"@radix-ui/react-hover-card": "1.1.19",
"@radix-ui/react-label": "2.1.11",
"@radix-ui/react-menubar": "1.1.20",
"@radix-ui/react-navigation-menu": "1.2.18",
"@radix-ui/react-popover": "1.1.19",
"@radix-ui/react-progress": "1.1.12",
"@radix-ui/react-radio-group": "1.4.3",
"@radix-ui/react-scroll-area": "1.2.14",
"@radix-ui/react-select": "2.3.3",
"@radix-ui/react-separator": "1.1.11",
"@radix-ui/react-slider": "1.4.3",
"@radix-ui/react-slot": "1.3.0",
"@radix-ui/react-switch": "1.3.3",
"@radix-ui/react-tabs": "1.1.17",
"@radix-ui/react-toggle": "1.1.14",
"@radix-ui/react-toggle-group": "1.1.15",
"@radix-ui/react-tooltip": "1.2.12",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"@reduxjs/toolkit": "2.12.0",
"@xyflow/react": "12.11.2",
"animejs": "4.5.0",
"autoprefixer": "10.5.2",
"canvas-confetti": "1.9.4",
"chalk": "^5.3.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.1.1",
"csv-parse": "7.0.1",
"date-fns": "4.4.0",
"dexie": "4.4.4",
"dompurify": "3.4.11",
"dotenv": "^17.3.1",
"elkjs": "^0.11.1",
"embla-carousel-react": "8.6.0",
"framer-motion": "12.42.2",
"gsap": "^3.14.2",
"highlight.js": "^11.11.1",
"icodec": "^0.6.0",
"ink": "7.1.0",
"ink-spinner": "^5.0.0",
"input-otp": "1.4.2",
"katex": "0.17.0",
"leaflet": "^1.9.4",
"leva": "^0.10.1",
"libheif-js": "^1.19.8",
"lucide-react": "1.23.0",
"marked": "18.0.5",
"marked-highlight": "^2.2.3",
"motion": "12.42.2",
"n_apt_canvas": "file:./packages/n_apt_canvas",
"next-themes": "0.4.6",
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-day-picker": "10.0.1",
"react-dom": "^19.2.4",
"react-flow": "^1.0.3",
"react-helmet-async": "^3.0.0",
"react-katex": "^3.1.0",
"react-leaflet": "^5.0.0",
"react-markdown": "^10.1.0",
"react-redux": "9.3.0",
"react-resizable-panels": "4.12.1",
"react-responsive-masonry": "2.7.2",
"react-router-dom": "7.18.1",
"recharts": "3.9.2",
"redis": "6.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"sonner": "2.0.7",
"styled-components": "6.4.3",
"tailwind-merge": "3.6.0",
"three": "0.185.1",
"unist-util-visit": "^5.1.0",
"vaul": "1.1.2",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@ladle/react": "^5.1.1",
"@playwright/test": "1.61.1",
"@tailwindcss/postcss": "4.3.2",
"@tailwindcss/vite": "4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/express": "5.0.6",
"@types/jest": "^30.0.0",
"@types/katex": "^0.16.8",
"@types/leaflet": "^1.9.21",
"@types/node": "26.1.1",
"@types/node-notifier": "^8.0.5",
"@types/react": "19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-katex": "^3.0.4",
"@types/styled-components": "^5.1.36",
"@types/three": "0.185.0",
"@typescript/typescript6": "6.0.2",
"@use-gpu/wgsl": "^0.19.0",
"@vitejs/plugin-react": "6.0.3",
"@vitest/browser-playwright": "4.1.10",
"@vitest/coverage-v8": "4.1.10",
"@webgpu/types": "0.1.71",
"agent-react-devtools": "^0.4.0",
"agentation": "^3.0.1",
"better-sqlite3": "^12.4.1",
"concurrently": "10.0.3",
"express": "5.2.1",
"fkill-cli": "^9.0.0",
"jest": "^30.3.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^30.2.0",
"jest-transform-stub": "^2.0.0",
"node-notifier": "^10.0.1",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"playwright": "1.61.1",
"react-devtools-core": "^7.0.1",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "4.3.2",
"ts-jest": "29.4.11",
"tsx": "4.23.0",
"typescript": "7.0.2",
"vite": "8.1.3",
"vite-plugin-glsl": "^1.5.6",
"vitest": "4.1.10",
"wgsl-test": "0.2.30"
},
"peerDependencies": {
"react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
}
},
"overrides": {
"react-inspector": {
"react": "^19.2.4"
},
"protobufjs": "^7.6.2",
"qs": "^6.15.2",
"ws": "^8.21.0",
"uuid": "^14.0.0",
"braces": "^3.0.3",
"micromatch": "^4.0.8",
"hono": "^4.12.23"
}
}