-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1006 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
41
{
"private": true,
"name": "@conres.io/fft",
"version": "0.0.1",
"description": "Fast-enough fourier open source implementations for JavaScript, C++ and WASM… maybe even MatLab!",
"author": "Saleh Abdel Motaal <[email protected]> (https://smotaal.io/#/meta/)",
"contributors": [
"Saleh Abdel Motaal <[email protected]> (https://smotaal.io/#/meta/)"
],
"type": "module",
"scripts": {
"typescript": "tsc -b ./tsconfig.json"
},
"devDependencies": {
"@smotaal.io/tools": "*",
"@smotaal/markout": "*",
"@smotaal/types": "*",
"@types/node": "*",
"http-server": "*",
"prettier": "*",
"rollup": "*",
"typescript": "*"
},
"resolutions": {
"@smotaal/markout": "SMotaal/markout",
"@smotaal/types": "SMotaal/types"
},
"workspaces": {
"packages": [
"./js",
"./ts"
]
},
"publishConfig": {
"private": false,
"access": "public",
"devDependencies": null,
"resolutions": null,
"workspaces": null
}
}