-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.36 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
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
82
83
84
85
86
87
88
89
90
{
"name": "@frogfish/ratatouille",
"version": "1.0.2",
"description": "Best-effort telemetry firehose with NDJSON Relay sinks (Node + Workers) and optional local printing.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.node.require.cjs",
"module": "./dist/index.node.js",
"types": "./dist/index.node.d.ts",
"exports": {
".": {
"browser": {
"types": "./dist/index.browser.d.ts",
"import": "./dist/index.browser.js"
},
"types": "./dist/index.node.d.ts",
"import": "./dist/index.node.js",
"require": "./dist/index.node.require.cjs"
},
"./relay": {
"browser": {
"types": "./dist/relay.worker.d.ts",
"import": "./dist/relay.worker.js"
},
"types": "./dist/relay.d.ts",
"import": "./dist/relay.js",
"require": "./dist/relay.require.cjs"
},
"./transports/ringtail": {
"browser": {
"types": "./dist/transports/ringtail.worker.d.ts",
"import": "./dist/transports/ringtail.worker.js"
},
"types": "./dist/transports/ringtail.d.ts",
"import": "./dist/transports/ringtail.js",
"require": "./dist/transports/ringtail.require.cjs"
},
"./presets/nomad": {
"types": "./dist/presets/nomad.d.ts",
"import": "./dist/presets/nomad.js",
"require": "./dist/presets/nomad.require.cjs"
},
"./presets/lambda": {
"types": "./dist/presets/lambda.d.ts",
"import": "./dist/presets/lambda.js",
"require": "./dist/presets/lambda.require.cjs"
},
"./presets/workers": {
"browser": {
"types": "./dist/presets/workers.d.ts",
"import": "./dist/presets/workers.js"
},
"types": "./dist/presets/workers.d.ts",
"import": "./dist/presets/workers.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsup",
"dev": "tsup --watch",
"contract:test": "node contract/run-all.mjs",
"prepublishOnly": "npm run build"
},
"keywords": [
"telemetry",
"firehose",
"ndjson",
"relay",
"workers",
"logging",
"debug"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^24.10.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}