Skip to content

Commit

Permalink
Merge pull request #6 from blastorg/fix/update-dependencies
Browse files Browse the repository at this point in the history
Fix/update dependencies
  • Loading branch information
gonzalopaniagua authored Nov 20, 2024
2 parents 18e8387 + 296422f commit 9752cb9
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 27 deletions.
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@blastorg/gamecoordinator-dota-communicator",
"description": "",
"version": "1.1.1",
"version": "1.1.3",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
Expand Down Expand Up @@ -41,11 +41,11 @@
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/node20": "^20.1.4",
"@types/bytebuffer": "^5.0.49",
"@types/jest": "^29.5.8",
"@types/node": "^20.14.0",
"@types/steam-user": "^5.0.0",
"@types/steam-user": "^5.0.3",
"@types/unbzip2-stream": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.9.0",
Expand Down Expand Up @@ -76,6 +76,9 @@
"bytebuffer": "^5.0.1",
"long": "^5.2.3",
"protobufjs": "^7.3.0",
"steam-user": "^5.0.9"
"steam-user": "^5.2.0"
},
"engines": {
"node": ">=20.0.0"
}
}
}
40 changes: 20 additions & 20 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2020",
"target": "ES2022",
/* Modules */
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./lib/",
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
Expand All @@ -12,6 +14,5 @@
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"declaration": true /* Generate .d.ts files for every TypeScript or JavaScript file inside your project. */
},
"extends": "@tsconfig/node18/tsconfig.json",
"exclude": ["node_modules", "lib", "tests", "local_testing"]
}

0 comments on commit 9752cb9

Please sign in to comment.