-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.88 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.88 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
{
"name": "rad.io",
"version": "0.0.1",
"description": "Professional browser-based SDR visualizer with industry-standard signal analysis and universal device support",
"scripts": {
"build": "npm run asbuild:release && webpack --mode development",
"build:prod": "npm run asbuild:release && webpack --mode production",
"start": "npm run asbuild:release && webpack serve --mode development",
"dev": "npm start",
"lint": "eslint src && npm run lint:css",
"lint:fix": "eslint src --fix",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint \"src/**/*.css\" --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:sim": "playwright test --grep @simulated",
"test:e2e:device": "RADIO_E2E_DEVICE=1 playwright test --grep @device",
"test:e2e:real": "E2E_REAL_HACKRF=1 playwright test --grep @real",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint && npm run format:check && npm run build",
"clean": "rimraf dist node_modules build",
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild:release-simd": "asc assembly/index.ts --target release-simd",
"asbuild": "npm run asbuild:debug && npm run asbuild:release && npm run asbuild:release-simd",
"as:check": "npm run asbuild:debug",
"test:perf": "TRACK_PERFORMANCE=1 jest --no-coverage"
},
"author": "Alex Mitchell <alex@alexmitchelltech.com>",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@assemblyscript/loader": "^0.28.8",
"@axe-core/playwright": "^4.11.0",
"@codecov/webpack-plugin": "^1.9.1",
"@eslint/css": "^0.8.1",
"@eslint/js": "^9.27.0",
"@eslint/json": "^0.13.2",
"@playwright/test": "^1.56.1",
"@swc/core": "^1.13.5",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/node": "^24.9.1",
"@types/papaparse": "^5.5.0",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@types/react-router-dom": "^5.3.3",
"@types/w3c-web-usb": "^1.0.10",
"@types/webpack-dev-server": "^4.7.1",
"@webgpu/types": "^0.1.66",
"assemblyscript": "^0.28.8",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"html-webpack-plugin": "^5.6.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.5",
"style-loader": "^4.0.0",
"stylelint": "^16.25.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-declaration-strict-value": "^1.10.11",
"swc-loader": "^0.2.6",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"webpack": "^5.99.8",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"papaparse": "^5.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.9.4",
"zustand": "^5.0.8"
},
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
}
}