diff --git a/anon/package.json b/anon/package.json index f807d9c..5a4a8e9 100644 --- a/anon/package.json +++ b/anon/package.json @@ -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", @@ -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", @@ -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": { diff --git a/package.json b/package.json index 534005d..8625544 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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": { diff --git a/stats/package.json b/stats/package.json index 07e7c55..822bcb5 100644 --- a/stats/package.json +++ b/stats/package.json @@ -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", @@ -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": {