Files
cypress/packages/telemetry/package.json
Bill Glesias eed699eb6d chore: update lerna to 8.1.8 from 6.6.2 (#30436)
* fix sync script with updateds npm-packlist

* chore: update lerna from 6.6.2 to 8.1.8 and ran lerna repair

* chore: pin typescript to ~5.4.5 to avoid importsNotUsedAsValues that was removed in 5.5 and edit workflows and scripts to correctly scope learna packages on v8 snapshot tests [run ci]

* fix indentation in comments

* remove console.log reference to print current package directory in sync exported npm with cli script
2024-10-22 14:46:46 -04:00

39 lines
1.1 KiB
JSON

{
"name": "@packages/telemetry",
"version": "0.0.0-development",
"description": "open telemetry wrapper used throughout the cypress monorepo to instrument the cypress app",
"private": true,
"main": "dist/node.js",
"browser": "src/browser.ts",
"scripts": {
"build": "tsc",
"check-ts": "tsc --noEmit && yarn -s tslint",
"clean": "rimraf dist",
"test": "yarn test-unit",
"test-unit": "mocha --config ./test/.mocharc.js",
"tslint": "tslint --config ../ts/tslint.json --project .",
"watch": "tsc --watch"
},
"dependencies": {
"@opentelemetry/api": "1.4.1",
"@opentelemetry/core": "1.12.0",
"@opentelemetry/exporter-trace-otlp-http": "0.38.0",
"@opentelemetry/otlp-exporter-base": "0.38.0",
"@opentelemetry/resources": "1.12.0",
"@opentelemetry/sdk-trace-base": "1.12.0",
"@opentelemetry/sdk-trace-node": "1.12.0",
"@opentelemetry/sdk-trace-web": "1.12.0",
"@opentelemetry/semantic-conventions": "1.12.0"
},
"devDependencies": {
"@packages/ts": "0.0.0-development",
"mocha": "7.0.1"
},
"files": [
"dist",
"src"
],
"types": "src/node.ts",
"nx": {}
}