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{
"name": "@fuel-ts/logger",
"version": "0.102.0",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"description": "A logger for the Fuel-TS ecosystem",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/FuelLabs/fuels-ts/issues"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup",
"postbuild": "tsx ../../scripts/postbuild.ts"
},
"keywords": [
"Fuel"
],
"files": [
"dist"
],
"dependencies": {
"debug": "4.4.0",
"@fuel-ts/address": "workspace:*",
"@fuel-ts/math": "workspace:*"
},
"devDependencies": {
"@types/debug": "4.1.12"
},
"license": "Apache-2.0"
}