-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "instrument-pipeline",
"version": "0.0.0",
"description": "Export job execution metrics to a Prometheus aggregation gateway",
"type": "module",
"scripts": {
"build": "npx concurrently -- \"npm run build:main\" \"npm run build:post\"",
"build:main": "ncc build src/main.ts -o main",
"build:post": "ncc build src/post.ts -o post",
"build:test": "ncc build src/test.ts -o test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autometrics-dev/instrument-pipeline.git"
},
"author": "Fiberplane<[email protected]>",
"license": "MIT or Apache-2.0",
"contributors": [
"Ade Telezhnikova"
],
"bugs": {
"url": "https://github.com/autometrics-dev/instrument-pipeline/issues"
},
"homepage": "https://github.com/autometrics-dev/instrument-pipeline#readme",
"dependencies": {
"@opentelemetry/exporter-prometheus": "^0.48.0",
"@opentelemetry/sdk-metrics": "^1.21.0"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.3",
"@types/node": "^20.11.22",
"@vercel/ncc": "^0.38.1",
"concurrently": "^8.2.2",
"typescript": "next"
}
}