-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1004 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
{
"name": "@fivemanage/winston",
"description": "The official Fivemanage transport for the winston logger, for internal use only!!!",
"version": "0.3.0",
"license": "GPL-3.0-or-later",
"author": "Fivemanage",
"repository": {
"type": "git",
"url": "https://github.com/fivemanage/winston-transport"
},
"keywords": ["fivem", "fivemanage", "winston"],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"files": ["dist"],
"scripts": {
"build": "tsup"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/node": "^20.5.1",
"@types/node-fetch": "^2.6.4",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"node-fetch": "^2.7.0",
"winston-transport": "^4.7.0"
},
"packageManager": "[email protected]"
}