Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2025-02-17 18:21:02 +00:00
parent 47d5364431
commit 9dfa165835
185 changed files with 8301 additions and 3605 deletions

14
node_modules/long/package.json generated vendored
View file

@ -1,6 +1,6 @@
{
"name": "long",
"version": "5.3.0",
"version": "5.3.1",
"author": "Daniel Wirtz <dcode@dcode.io>",
"description": "A Long class for representing a 64-bit two's-complement integer value.",
"repository": {
@ -32,23 +32,27 @@
}
},
"scripts": {
"build": "esm2umd Long index.js > umd/index.js",
"build": "node scripts/build.js",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "node tests",
"test:typescript": "tsc --project tests/typescript/tsconfig.esnext.json && tsc --project tests/typescript/tsconfig.nodenext.json && tsc --project tests/typescript/tsconfig.commonjs.json"
"test:typescript": "tsc --project tests/typescript/tsconfig.esnext.json && tsc --project tests/typescript/tsconfig.nodenext.json && tsc --project tests/typescript/tsconfig.commonjs.json && tsc --project tests/typescript/tsconfig.global.json"
},
"files": [
"index.js",
"index.d.ts",
"types.d.ts",
"umd/index.js",
"umd/index.d.ts",
"umd/types.d.ts",
"umd/package.json",
"types.d.ts",
"LICENSE",
"README.md"
],
"devDependencies": {
"esm2umd": "^0.2.2",
"esm2umd": "^0.3.0",
"prettier": "^3.5.0",
"typescript": "^5.7.3"
}
}