-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.28 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.28 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@scayle/nuxt-opentelemetry",
"version": "0.17.3",
"description": "A Nuxt module for OpenTelemetry integration",
"author": "SCAYLE Commerce Engine",
"license": "MIT",
"keywords": [
"nuxt",
"opentelemetry"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"url": "git+https://github.com/scayle/nuxt-opentelemetry.git"
},
"website": "https://scayle.dev/en/core-documentation/storefront-guide/storefront-application/integrations/open-telemetry",
"exports": {
".": {
"types": "./dist/module.d.mts",
"import": "./dist/module.mjs"
},
"./instrumentation": {
"types": "./dist/runtime/instrumentation.d.ts",
"import": "./dist/runtime/instrumentation.js"
}
},
"main": "./dist/module.mjs",
"type": "module",
"files": [
"CHANGELOG.md",
"dist/**"
],
"engines": {
"node": ">= 18.15.0"
},
"compatibility": {
"nuxt": "^3.10"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"prep": "nuxt-module-build prepare && nuxt prepare playground",
"format": "dprint check",
"format:fix": "dprint fmt",
"lint": "eslint .",
"lint:ci": "eslint . --format gitlab",
"lint:fix": "eslint . --fix",
"package:lint": "publint",
"verify-packaging": "attw --pack . --profile esm-only",
"typecheck": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"test:ci": "vitest --run --coverage --reporter=default --reporter=junit --outputFile=./coverage/junit.xml"
},
"peerDependencies": {
"h3": "^1.10.0",
"@nuxt/kit": "^3.13.0 || ^4.2.0"
},
"dependencies": {
"@opentelemetry/api": "catalog:",
"@opentelemetry/auto-instrumentations-node": "0.69.0",
"@opentelemetry/core": "2.5.0",
"@opentelemetry/exporter-metrics-otlp-proto": "0.211.0",
"@opentelemetry/exporter-trace-otlp-proto": "0.211.0",
"@opentelemetry/instrumentation": "0.211.0",
"@opentelemetry/instrumentation-runtime-node": "0.24.0",
"@opentelemetry/sdk-metrics": "2.5.0",
"@opentelemetry/sdk-node": "0.200.0",
"@opentelemetry/sdk-trace-base": "2.5.0",
"@opentelemetry/sdk-trace-node": "2.5.0",
"@opentelemetry/semantic-conventions": "1.39.0",
"@vercel/otel": "2.1.0",
"defu": "catalog:",
"import-in-the-middle": "catalog:",
"knitwork": "catalog:"
},
"devDependencies": {
"@arethetypeswrong/cli": "catalog:",
"@nuxt/module-builder": "catalog:",
"@nuxt/schema": "catalog:nuxt3",
"@opentelemetry/context-async-hooks": "2.5.0",
"@opentelemetry/instrumentation-http": "0.211.0",
"@scayle/eslint-config-storefront": "workspace:*",
"@scayle/vitest-config-storefront": "workspace:*",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"dprint": "catalog:",
"eslint": "catalog:",
"eslint-formatter-gitlab": "catalog:",
"memfs": "4.56.10",
"nitro-test-utils": "0.10.1",
"nitropack": "catalog:",
"nuxt": "catalog:nuxt3",
"publint": "catalog:",
"rimraf": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:"
}
}