mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-08 17:54:23 +01:00
* chore: bump electron@42.9.3 * chore: update build * chore: remove electron dependency Dependency was only needed for types, binary download happens elsewhere. With the 7-day quarantine the dependency adds unnecessary delay on runtime update. * fix: monaco type dependency Locking to node 24.12.4 instead of 24.x to avoid quarantine delay. Can be bumped again in followup. * chore: bump distro * fix: license check for types/node
29 lines
724 B
JSON
29 lines
724 B
JSON
{
|
|
"name": "test-monaco",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"compile": "node ../../node_modules/typescript/bin/tsc6",
|
|
"bundle-webpack": "webpack --config ./webpack.config.js --bail",
|
|
"esm-check": "node esm-check/esm-check.js",
|
|
"test": "node runner.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.14",
|
|
"@types/node": "24.12.4",
|
|
"axe-playwright": "^2.1.0",
|
|
"chai": "^4.2.0",
|
|
"css-loader": "^6.9.1",
|
|
"file-loader": "^6.2.0",
|
|
"style-loader": "^3.3.2",
|
|
"warnings-to-errors-webpack-plugin": "^2.3.0",
|
|
"webpack": "^5.105.0",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"postcss": "^8.5.12"
|
|
}
|
|
}
|