n8n/packages/testing/janitor/package.json
Declan Carroll 33c3598e66
ci: Remove unused bin fields to fix pnpm install warnings (no-changelog) (#29586)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-08 08:47:25 +00:00

47 lines
1008 B
JSON

{
"name": "@n8n/playwright-janitor",
"private": true,
"version": "0.1.0",
"description": "Static analysis and architecture enforcement for Playwright test suites",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "biome format --write .",
"format:check": "biome ci .",
"lint": "eslint . --quiet",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"keywords": [
"playwright",
"testing",
"static-analysis",
"architecture",
"linting"
],
"license": "MIT",
"dependencies": {
"@n8n/rules-engine": "workspace:*",
"glob": "^10.0.0"
},
"peerDependencies": {
"ts-morph": ">=20.0.0"
},
"devDependencies": {
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"ts-morph": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}