-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.46 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.46 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
{
"name": "opentelemetry-browser",
"version": "0.0.0",
"description": "OpenTelemetry is a distributed tracing and stats collection framework.",
"keywords": [
"opentelemetry",
"observability",
"browser",
"web"
],
"homepage": "https://github.com/open-telemetry/opentelemetry-browser",
"bugs": "https://github.com/open-telemetry/opentelemetry-browser/issues",
"license": "Apache-2.0",
"author": "OpenTelemetry Authors",
"repository": "github:open-telemetry/opentelemetry-browser",
"type": "module",
"private": true,
"scripts": {
"prepare": "lefthook install -f",
"generate": "turbo generate",
"clean": "npx -y rimraf -g \"**/.turbo\" \"**/dist\" \"**/node_modules\"",
"dev": "turbo run watch dev --filter=sandbox...",
"example": "turbo run watch dev --filter=examples-all-instrumentations...",
"build": "turbo run build",
"check": "npm run check:tsc && npm run check:eslint",
"check:tsc": "turbo run check-types",
"check:eslint": "eslint 'packages/**/src/**/*.{*js,*ts}'",
"check:eslint:dist": "eslint --config eslint.dist.config.js 'packages/**/dist/**/*.js'",
"lint": "npm run lint:biome && npm run check",
"lint:biome": "biome check --write",
"lint:ci": "biome ci && npm run check",
"validate": "node scripts/validate.js",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage"
},
"devDependencies": {
"@arethetypeswrong/core": "0.18.2",
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@turbo/gen": "2.9.14",
"@types/jsdom": "28.0.3",
"@vitest/browser-playwright": "4.1.6",
"@vitest/coverage-v8": "4.1.6",
"eslint": "10.3.0",
"eslint-plugin-baseline-js": "0.6.2",
"eslint-plugin-yet-another-license-header": "0.2.0",
"jsdom": "29.1.1",
"lefthook": "2.1.6",
"publint": "0.3.21",
"tsdown": "0.22.0",
"turbo": "2.9.14",
"typescript-eslint": "8.59.3",
"vite": "8.0.13",
"vitest": "4.1.6"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"workspaces": [
"examples/*",
"packages/*",
"sandbox"
],
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"packageManager": "npm@11.9.0",
"devEngines": {
"packageManager": {
"name": "npm",
"version": "^11.9.0",
"onFail": "error"
},
"runtime": {
"name": "node",
"version": ">=24"
}
}
}