vscode-dotnet-runtime/vscode-dotnet-runtime-library/package.json

63 строки
1.8 KiB
JSON

{
"name": "vscode-dotnet-runtime-library",
"description": "A library to acquire .NET Core runtimes.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/dotnet/vscode-dotnet-runtime.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.74.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run clean && tsc -p ./ && npm run mockPack",
"mockPack": "run-script-os",
"mockPack:darwin:linux": "cd .. && sh ./mock-webpack.sh && cd vscode-dotnet-runtime-library",
"mockPack:win32": "pushd .. && @powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./mock-webpack.ps1 && popd",
"watch": "npm run clean && tsc -watch -p ./",
"test": "npm run compile --silent && npm run unit-test",
"unit-test": "mocha -u tdd -- dist/test/unit/**.test.js",
"clean": "rimraf dist"
},
"devDependencies": {
"@types/chai": "4.2.22",
"@types/proper-lockfile": "^4.1.2",
"glob": "^7.2.0"
},
"dependencies": {
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "16.11.7",
"@types/rimraf": "3.0.2",
"@types/semver": "^7.3.9",
"@types/shelljs": "0.8.9",
"@types/vscode": "1.74.0",
"@vscode/sudo-prompt": "^9.3.1",
"axios": "^1.7.2",
"axios-cache-interceptor": "^1.5.3",
"axios-retry": "^3.4.0",
"chai": "4.3.4",
"chai-as-promised": "^7.1.1",
"eol": "^0.9.1",
"get-proxy-settings": "^0.1.13",
"https-proxy-agent": "^7.0.4",
"mocha": "^9.1.3",
"open": "^8.4.0",
"proper-lockfile": "^4.1.2",
"rimraf": "3.0.2",
"run-script-os": "^1.1.6",
"semver": "^7.6.2",
"shelljs": "0.8.5",
"typescript": "4.4.4",
"vscode-extension-telemetry": "^0.4.3",
"vscode-test": "^1.6.1"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}