-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "@hamstudy/mt63-wasm",
"version": "1.5.2",
"private": false,
"description": "WebAssembly implementation of MT63 ported from fldigi",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"build": "tsc -p . && cp -v native_build/mt63Wasm.* dist/",
"build_native": "./prepemscripten.sh && cmake --build native_build/",
"build_all": "npm run build_native && npm run build",
"prepublish": "tsc -p . && cp -v native_build/mt63Wasm.* dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taxilian/mt63_wasm.git"
},
"author": "Richard Bateman <richard@hamstudy.org>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/taxilian/mt63_wasm/issues"
},
"homepage": "https://github.com/taxilian/mt63_wasm#readme",
"devDependencies": {
"@types/jest": "~23.3.10",
"@types/webpack": "^4.4.32",
"@types/webpack-env": "^1.13.9",
"jest": "^27.0.3",
"ts-jest": "^27.0.2",
"ts-node": "^8.2.0",
"tsc-watch": "^2.2.1",
"typescript": "~4.9",
"webpack": "^4.32.2"
},
"files": [
"dist/",
"emscripten.d.ts"
],
"dependencies": {
"@types/node": "^16.18.23"
}
}