frost-fft
Version:
Fast Fourier Transform (FFT) implementation in TypeScript using the Cooley–Tukey algorithm for power-of-2 input lengths
48 lines (47 loc) • 1.18 kB
JSON
{
"name": "frost-fft",
"version": "0.2.2",
"description": "Fast Fourier Transform (FFT) implementation in TypeScript using the Cooley–Tukey algorithm for power-of-2 input lengths",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/frostburn"
},
"main": "dist/index",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"license": "MIT",
"keywords": [
"FFT",
"Fourier",
"Fast Fourier Transformation",
"Typescript"
],
"author": "Lumi Pakkanen",
"bugs": {
"url": "https://github.com/frostburn/frost-fft/issues"
},
"homepage": "https://github.com/frostburn/frost-fft#readme",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"test": "vitest",
"bench": "vitest bench",
"doc": "typedoc src/index.ts . --name frost-fft"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.9",
"gts": "^5.3.1",
"jsdom": "^24.1.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}