-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "@axiomhq/winston",
"description": "The official Axiom transport for winston logger",
"version": "1.3.1",
"type": "module",
"types": "dist/esm/types/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.cjs",
"author": "Axiom, Inc.",
"license": "MIT",
"homepage": "https://github.com/axiomhq/axiom-js/blob/main/packages/winston/README.md",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:cjs": "rollup -c rollup.config.cjs.js",
"format": "eslint 'src/**/*.{js,ts}' --quiet --fix",
"lint": "eslint 'src/**/*.{js,ts}'",
"test": "vitest run test/unit/* --coverage",
"prepublish": "npm run build && npm run build:cjs"
},
"dependencies": {
"@axiomhq/js": "workspace:*",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"winston": "^3.14.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"engines": {
"node": ">=16"
},
"keywords": [
"axiom",
"winston",
"axiom-js",
"axiom-winston"
],
"bugs": {
"url": "https://github.com/axiomhq/axiom-js/issues"
},
"exports": {
"types": "./dist/esm/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.js"
}
}