-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.56 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
{
"name": "@vscode/extension-telemetry",
"description": "A module for Visual Studio Code extensions to report consistent telemetry.",
"version": "1.5.4",
"author": {
"name": "Microsoft Corporation"
},
"main": "./dist/node/node/telemetryReporter.js",
"browser": "./dist/browser/browser/telemetryReporter.js",
"module": "./dist/node-esm/node/telemetryReporter.js",
"types": "./dist/telemetryReporter.d.ts",
"sideEffects": false,
"license": "MIT",
"engines": {
"vscode": "^1.75.0"
},
"scripts": {
"prepack": "node injectVersion.js",
"build": "npm run compile",
"test": "tsc -p test/tsconfig.json && mocha dist/test/test/*.test.js",
"compile": "tsc -p src/browser/tsconfig.json && tsc -p src/node/tsconfig.json && tsc -p src/node/tsconfig.esm.json",
"lint": "eslint src"
},
"dependencies": {
"@microsoft/1ds-post-js": "^4.4.2",
"@microsoft/applicationinsights-core-js": "^3.4.2",
"@microsoft/applicationinsights-web-basic": "^3.4.2"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"@types/sinon": "^10.0.20",
"@types/vscode": "^1.75.0",
"eslint": "^9.39.4",
"mocha": "^11.7.4",
"sinon": "^17.0.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.57.0",
"user-agent-data-types": "^0.4.2"
},
"overrides": {
"serialize-javascript": "7.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-telemetry.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-extension-telemetry/issues"
}
}