-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.65 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
51
52
53
54
{
"name": "@boxyhq/metrics",
"version": "0.2.9",
"description": "Internal SDK for OTel instrumentation",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"lint": "eslint -c eslint.config.mjs ./",
"test:manual": "env-cmd -f ./test/.env ts-node --project tsconfig.json test/index.ts",
"check-format": "prettier --check .",
"format": "prettier --write .",
"release": "git checkout release && git merge origin/main && release-it && git checkout main && git merge origin/release && git push origin main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boxyhq/metrics.git"
},
"keywords": [
"otel",
"telemetry"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/boxyhq/metrics/issues"
},
"homepage": "https://github.com/boxyhq/metrics#readme",
"dependencies": {
"@grpc/grpc-js": "1.12.5",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "0.57.0",
"@opentelemetry/exporter-metrics-otlp-http": "0.57.0",
"@opentelemetry/resources": "1.30.0",
"@opentelemetry/sdk-metrics": "1.30.0",
"@opentelemetry/semantic-conventions": "1.28.0"
},
"devDependencies": {
"@eslint/compat": "1.2.4",
"@tsconfig/recommended": "1.0.8",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"env-cmd": "10.1.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"prettier": "3.4.2",
"release-it": "17.11.0",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}