-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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": "@nchlswhttkr/cloudflare-workers-otel",
"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",
"@cloudflare/workers-types": "^4.20250606.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-trace-base": "^2.0.0",
"@opentelemetry/resources": "^2.0.0",
"@opentelemetry/semantic-conventions": "^1.33.0",
"@nchlswhttkr/otlp-exporter-fetch": "workspace:*",
"@opentelemetry/sdk-logs": "^0.202.0",
"@opentelemetry/api-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/ban-ts-comment": "off"
}
}
}