-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
47
48
49
50
51
52
53
54
55
{
"name": "@hamstudy/mt63",
"version": "1.0.0",
"description": "TypeScript implementation of MT63 digital mode for amateur radio",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"keywords": [
"mt63",
"amateur-radio",
"digital-mode",
"ham-radio",
"dsp",
"modem"
],
"author": "HamStudy.org LLC",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/HamStudy/mt63-js.git"
},
"bugs": {
"url": "https://github.com/HamStudy/mt63-js/issues"
},
"homepage": "https://github.com/HamStudy/mt63-js#readme",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "vitest run --reporter=verbose",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vitest": "^3.2.4"
}
}