-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 998 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
42
43
44
45
46
47
48
49
50
51
{
"name": "gcn-kafka",
"version": "0.2.3",
"description": "Official Node.js Kafka client for the General Coordinates Network (GCN)",
"repository": {
"type": "git",
"url": "github:nasa-gcn/gcn-kafka-js"
},
"main": "index.js",
"files": [
"*.js",
"*.d.ts"
],
"scripts": {
"prepare": "tsc",
"format": "prettier -w ."
},
"contributors": [
{
"name": "Leo Singer",
"email": "[email protected]"
},
{
"name": "Tom Barclay",
"email": "[email protected]"
},
{
"name": "Eric Burns",
"email": "[email protected]"
}
],
"license": "CC0-1.0",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@tsconfig/node14": "^14.1.2",
"@types/node": "^22.0.0",
"prettier": "3.3.3",
"typescript": "^5.5.3"
},
"dependencies": {
"@mongodb-js/zstd": "^1.2.0",
"kafkajs": "^2.0.2",
"openid-client": "^5.1.6"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}