47 строки
1.4 KiB
JSON
47 строки
1.4 KiB
JSON
{
|
|
"name": "@vscode/extension-telemetry",
|
|
"description": "A module for Visual Studio Code extensions to report consistent telemetry.",
|
|
"version": "0.6.3",
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"main": "./dist/node/node/telemetryReporter.js",
|
|
"browser": "./dist/browser/browser/telemetryReporter.js",
|
|
"types": "./dist/telemetryReporter.d.ts",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.60.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": "^3.2.4",
|
|
"@microsoft/1ds-post-js": "^3.2.4",
|
|
"@microsoft/applicationinsights-web": "^2.8.5",
|
|
"applicationinsights": "2.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "^16.11.32",
|
|
"@types/sinon": "^10.0.11",
|
|
"@types/vscode": "^1.60.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.18.0",
|
|
"@typescript-eslint/parser": "^5.18.0",
|
|
"eslint": "^8.12.0",
|
|
"mocha": "^9.2.2",
|
|
"sinon": "^13.0.2",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-telemetry.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-extension-telemetry/issues"
|
|
}
|
|
}
|