-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 993 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 993 Bytes
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": "@debugr/elastic",
"version": "3.0.0-rc.10",
"description": "Elastic log handler for Debugr",
"author": {
"name": "Dan Kadera",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@debugr/core": "^3.0.0-rc.12",
"@elastic/elasticsearch": "^8.9.0"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"build": {
"src": "src/index.ts",
"externals": [
"@elastic/elasticsearch"
]
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build:cleanup": "../../.run build:cleanup",
"build:compile": "../../.run build:compile",
"build:declarations": "../../.run build:declarations",
"build:prettify": "../../.run build:prettify",
"build:main": "../../.run build:main",
"build": "../../.run build",
"lint": "../../.run lint",
"preversion": "../../.run release"
}
}