-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.95 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
{
"name": "signal-decoder",
"version": "0.13.0",
"description": "Free web-based signal decoder for amateur radio. Decode FT8/FT4 (with QSO tracking, world map, ADIF log, and CAT transmit), RTTY, CW, SSTV, NAVTEX/SITOR-B, and MFSK signals in real-time from your browser.",
"keywords": [
"ft8",
"ft4",
"rtty",
"cw",
"morse-code",
"sstv",
"mfsk",
"navtex",
"amateur-radio",
"ham-radio",
"cat-control",
"adif",
"web-audio",
"dsp",
"pwa",
"offline-first",
"radio-decoder"
],
"author": {
"name": "acesso",
"url": "https://github.com/acesso"
},
"repository": {
"type": "git",
"url": "https://github.com/acesso/Signal-Decoder.git"
},
"homepage": "https://acesso.github.io/Signal-Decoder/",
"bugs": {
"url": "https://github.com/acesso/Signal-Decoder/issues"
},
"license": "0BSD",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:cat-hardware": "tsx scripts/cat-hardware-test.ts",
"test:calibration-live": "tsx scripts/calibration-live-test.ts",
"test:perf": "tsx scripts/perf-testbed.ts",
"dev:test": "vite --port 3002"
},
"dependencies": {
"@e04/ft8ts": "^0.0.14",
"@types/leaflet": "^1.9.21",
"leaflet": "^1.9.4",
"solid-js": "^1.9.13",
"workbox-window": "^7.4.1"
},
"devDependencies": {
"@swc/core": "^1.13.5",
"@swc/jest": "^0.2.39",
"@tailwindcss/vite": "^4.3.2",
"@types/audioworklet": "^0.0.100",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"playwright-core": "^1.54.0",
"tailwindcss": "^4.3.2",
"tsx": "^4.22.4",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-solid": "^2.11.12"
}
}