Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
scheibo committed Jun 1, 2024
1 parent d4bc4d8 commit 2da4909
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 23 deletions.
33 changes: 24 additions & 9 deletions anon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pkmn/anon",
"version": "0.1.14",
"version": "0.1.15",
"description": "Logic for anonymizing Pokémon Showdown battle simulator logs",
"repository": "github:pkmn/stats",
"license": "MIT",
Expand All @@ -16,11 +16,11 @@
"access": "public"
},
"dependencies": {
"@pkmn/data": "^0.8.9",
"@pkmn/protocol": "^0.6.19"
"@pkmn/data": "^0.9.5",
"@pkmn/protocol": "^0.6.25"
},
"devDependencies": {
"@pkmn/dex": "^0.8.9"
"@pkmn/dex": "^0.9.5"
},
"scripts": {
"lint": "eslint --cache src --ext ts",
Expand All @@ -33,20 +33,35 @@
},
"tsup": {
"outDir": "build",
"format": ["cjs", "esm"],
"format": [
"cjs",
"esm"
],
"sourcemap": true,
"dts": true,
"clean": true
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": ["node_modules/", "dist/"],
"modulePathIgnorePatterns": ["fixtures/"]
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"modulePathIgnorePatterns": [
"fixtures/"
]
},
"babel": {
"presets": [
"@babel/preset-typescript",
["@babel/preset-env", {"targets": {"node": "current"}}]
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"eslintConfig": {
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"license": "MIT",
"dependencies": {
"@pkmn/anon": "file:anon",
"@pkmn/data": "^0.8.9",
"@pkmn/dex": "^0.8.9",
"@pkmn/data": "^0.9.5",
"@pkmn/dex": "^0.9.5",
"@pkmn/logs": "file:logs",
"@pkmn/stats": "file:stats",
"json-stringify-pretty-compact": "3.0.0",
Expand All @@ -17,20 +17,20 @@
"@pkmn/sets": "^5.1.2"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@pkmn/eslint-config": "^7.1.0",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@pkmn/eslint-config": "^7.4.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"@types/node": "^20.13.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "<=8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"subpkg": "^4.1.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
"typescript": "^5.4.5"
},
"subPackages": ["anon", "logs", "stats"],
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions stats/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pkmn/stats",
"version": "0.2.16",
"version": "0.2.17",
"description": "Logic for processing usage stats from Pokémon Showdown battle simulator logs",
"repository": "github:pkmn/stats",
"license": "MIT",
Expand All @@ -16,10 +16,10 @@
"access": "public"
},
"dependencies": {
"@pkmn/data": "^0.8.9"
"@pkmn/data": "^0.9.5"
},
"devDependencies": {
"@pkmn/dex": "^0.8.9",
"@pkmn/dex": "^0.9.5",
"json-stringify-pretty-compact": "3.0.0"
},
"scripts": {
Expand Down

0 comments on commit 2da4909

Please sign in to comment.