-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "webfft",
"version": "1.0.3",
"description": "The Fastest Fourier Transform on the Web! 🚀🚀",
"main": "lib/main.js",
"types": "lib/@types/webfft/index.d.ts",
"scripts": {
"serve": "serve lib -l 8080",
"build": "webpack --config ./webpack.config.cjs --output-path ./lib/dist",
"test": "vitest run --config ./tests/vitest.config.ts --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IQEngine/WebFFT.git"
},
"keywords": [
"FFT",
"frequency",
"IQ",
"RF",
"wireless",
"audio",
"fourier",
"dsp",
"signal",
"processing"
],
"author": "IQEngine",
"license": "MIT",
"bugs": {
"url": "https://github.com/IQEngine/WebFFT/issues"
},
"homepage": "https://github.com/IQEngine/WebFFT#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^0.34.4",
"auto-changelog": "^2.4.0",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"fs": "^0.0.2",
"gh-release": "^7.0.2",
"path-browserify": "^1.0.1",
"prettier": "^3.0.3",
"serve": "^14.2.1",
"vite": "^4.4.9",
"vitest": "^0.34.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"type": "module"
}