frost-fft
Version:
Fast Fourier Transform (FFT) implementation in TypeScript using the Cooley–Tukey algorithm for power-of-2 input lengths
53 lines (52 loc) • 1.26 kB
JSON
{
"name": "frost-fft",
"version": "0.3.1",
"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"
},
"type": "module",
"main": "dist/index.js",
"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/node": "^25.5.2",
"gts": "^7.0.0",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
}
}