tidy: use a lockfile for js tools instead of npx

this makes us less vulnerable to MITM and supply chain attacks.

it also means that the CI scripts are no longer responsible for
tracking the versions of these tools.

it should also avoid the situation where local tsc and CI
disagree on the presense of errors due to them being different versions.
This commit is contained in:
binarycat 2025-06-27 14:29:39 -05:00
parent 4bd3b74aa9
commit c8e2a65ed1
7 changed files with 3323 additions and 86 deletions

9
package.json Normal file
View file

@ -0,0 +1,9 @@
{
"dependencies": {
"browser-ui-test": "^0.21.1",
"es-check": "^6.2.1",
"eslint": "^8.57.1",
"eslint-js": "github:eslint/js",
"typescript": "^5.8.3"
}
}