-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 938 Bytes
/
package.json
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
{
"name": "ts-dsp",
"version": "1.0.3",
"description": "A set of TypeScript tools for digital signal processing",
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"makedocs": "typedoc src --out docs --module commonjs",
"build": "tsc",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelyjoel/ts-dsp.git"
},
"keywords": [
"ts",
"typescript",
"dsp",
"digital",
"signal",
"processing",
"audio"
],
"author": "Joely Joel",
"license": "ISC",
"bugs": {
"url": "https://github.com/joelyjoel/ts-dsp/issues"
},
"homepage": "https://github.com/joelyjoel/ts-dsp#readme",
"devDependencies": {
"@types/node": "^12.7.2",
"typedoc": "^0.15.0",
"typedoc-markdown-theme": "0.0.4"
},
"dependencies": {
"fft.js": "^4.0.3"
}
}