forked from paper2/github-actions-opentelemetry
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.41 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
45
46
47
48
49
50
{
"name": "typescript-action",
"description": "GitHub Actions TypeScript template",
"version": "v0.9.2",
"author": "",
"private": true,
"homepage": "https://github.com/actions/typescript-action",
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"type": "module",
"bugs": {
"url": "https://github.com/actions/typescript-action/issues"
},
"keywords": ["actions", "node", "setup"],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks-types": "^7.6.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.208.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.208.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-trace-base": "^2.2.0",
"@opentelemetry/sdk-metrics": "^2.2.0"
},
"devDependencies": {
"@octokit/types": "^16.0.0",
"@opentelemetry/sdk-node": "0.208.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@types/node": "^24.10.0",
"@vercel/ncc": "^0.38.4",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"vitest": "^4.0.8"
}
}