-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.87 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "callbag-adsb",
"version": "1.0.3",
"description": "",
"keywords": [
"ads-b",
"callbags",
"callbag-net",
"flight-tracking",
"real-time-flight-tracking"
],
"author": "av8ta",
"license": "MIT",
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --env.NODE_ENV production",
"watch": "tsup src/index.ts --watch",
"test": "TS_NODE_IGNORE_DIAGNOSTICS=7016 ts-node-test test",
"test:watch": "tsup src/index.ts --watch --onSuccess 'npm run test'",
"lint": "eslint --ext .js,.ts .",
"fix": "npm run lint --fix",
"clean": "rimraf lib",
"prepublishOnly": "npm run clean && npm run fix && npm run build && npm run test"
},
"dependencies": {
"callbag-basics-esmodules": "^4.0.0",
"callbag-net": "^1.2.1",
"debug": "^4.3.4",
"decoder1090-c": "^1.0.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"callbag-last": "^1.1.4",
"callbag-observe": "^1.0.0",
"callbag-subscribe": "^1.5.1",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-test": "^0.2.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"files": [
"/lib"
],
"tsup": {
"target": [
"node14"
],
"format": [
"cjs",
"esm"
],
"outDir": "lib",
"splitting": false,
"sourcemap": true,
"clean": true,
"dts": true
},
"volta": {
"node": "18.8.0"
},
"engines": {
"node": ">=18.8.0"
}
}