chore: introduce check-deps (#864)

This commit is contained in:
Pavel Feldman
2025-08-11 17:21:26 -07:00
committed by GitHub
parent f010164bf1
commit ab0ecc4075
7 changed files with 202 additions and 1 deletions

View File

@@ -17,8 +17,9 @@
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"lint": "npm run update-readme && eslint . && tsc --noEmit",
"lint": "npm run update-readme && npm run check-deps && eslint . && tsc --noEmit",
"lint-fix": "eslint . --fix",
"check-deps": "node utils/check-deps.js",
"update-readme": "node utils/update-readme.js",
"watch": "tsc --watch",
"test": "playwright test",