Fix phantom dependencies

This commit is contained in:
Nick Cipollo
2025-12-01 20:21:27 -05:00
parent 5e58a022dc
commit 327ba10342
3 changed files with 10 additions and 1 deletions

View File

@@ -56,6 +56,8 @@
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "2.3.2", "@biomejs/biome": "2.3.2",
"@octokit/plugin-rest-endpoint-methods": "^10.4.1",
"@octokit/types": "^13.10.0",
"@types/jest": "^29.5.14", "@types/jest": "^29.5.14",
"jest": "^30.2.0", "jest": "^30.2.0",
"jest-circus": "^30.2.0", "jest-circus": "^30.2.0",

6
pnpm-lock.yaml generated
View File

@@ -33,6 +33,12 @@ importers:
'@biomejs/biome': '@biomejs/biome':
specifier: 2.3.2 specifier: 2.3.2
version: 2.3.2 version: 2.3.2
'@octokit/plugin-rest-endpoint-methods':
specifier: ^10.4.1
version: 10.4.1(@octokit/core@5.2.2)
'@octokit/types':
specifier: ^13.10.0
version: 13.10.0
'@types/jest': '@types/jest':
specifier: ^29.5.14 specifier: ^29.5.14
version: 29.5.14 version: 29.5.14

View File

@@ -7,7 +7,8 @@
"strict": true, "strict": true,
"skipLibCheck": true, "skipLibCheck": true,
"noImplicitAny": true, "noImplicitAny": true,
"esModuleInterop": true "esModuleInterop": true,
"types": ["node"]
}, },
"exclude": ["node_modules", "**/*.test.ts"] "exclude": ["node_modules", "**/*.test.ts"]
} }