-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "@axiomhq/pino",
"version": "1.3.1",
"description": "The official Axiom transport for Pino",
"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/tree/main/packages/pino#readme",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-js.git"
},
"engines": {
"node": ">=16"
},
"keywords": [
"pino",
"axiom",
"transport",
"logger"
],
"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"
},
"dependencies": {
"@axiomhq/js": "workspace:*",
"pino-abstract-transport": "^1.2.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:^"
}
}