-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1000 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1000 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
{
"name": "@nchlswhttkr/otlp-exporter-fetch",
"version": "0.1.0",
"scripts": {
"build": "./build.sh"
},
"license": "MIT",
"private": true,
"dependencies": {
"prettier": "^3.6.2",
"eslint": "^8.19.0",
"typescript": "^5.0.0",
"@typescript-eslint/parser": "^5.30.7",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@opentelemetry/otlp-exporter-base": "^0.200.0",
"@opentelemetry/sdk-trace-base": "^2.0.0",
"@opentelemetry/core": "^2.0.1",
"@opentelemetry/otlp-transformer": "^0.201.1",
"@opentelemetry/sdk-logs": "^0.202.0"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-empty-function": "warn"
}
}
}