forked from microsoft/vscode-extension-telemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 KB
/
package.json
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
{
"name": "@vscode/extension-telemetry",
"description": "A module for Visual Studio Code extensions to report consistent telemetry.",
"version": "0.9.7",
"author": {
"name": "Microsoft Corporation"
},
"main": "./dist/node/node/telemetryReporter.js",
"browser": "./dist/browser/browser/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/*",
"compile": "tsc -p src/browser/tsconfig.json && tsc -p src/node/tsconfig.json"
},
"dependencies": {
"@microsoft/1ds-core-js": "^4.3.0",
"@microsoft/1ds-post-js": "^4.3.0",
"@microsoft/applicationinsights-web-basic": "^3.3.0"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"@types/sinon": "^10.0.20",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"mocha": "^10.2.0",
"sinon": "^17.0.0",
"typescript": "^5.3.3",
"user-agent-data-types": "^0.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-telemetry.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-extension-telemetry/issues"
}
}