npm n8n @2.30.8
score
0.7
high
flagged
2026-07-20 03:18
Signals fired
| signal | weight | rationale |
|---|---|---|
| topology | ||
| dist_tag_anomaly | 0.5 | dist-tags.latest=2.30.8 but max published is 2.31.4 |
| shared_repo_different_publisher | 0.9 | repo 'git+https://github.com/n8n-io/n8n.git' also claimed by 10 package(s) under different publishers: ['npm/n8n-editor-ui', 'npm/@n8n/n8n-benchmark', 'npm/@n8n/client-oauth2'] ... |
Prior profile (what it deviated from)
{
"had_install_script": false,
"maintainers": [
"jan_n8n_io",
"n8n-matsuuu",
"cornelius_n8n_io",
"tomin8n"
],
"versions": 1080
}
Evidence (package doc at flag time)
{
"dependencies_count": 148,
"dist": {
"integrity": "sha512-6TyNJlemmm9toiRALJ8Tk3Pc73HtquZJg3ihcMgt9F7ZHigWbVBkg5M38OSboUQ/skROldMZK9gcpP4kVAOlgg==",
"tarball": "https://registry.npmjs.org/n8n/-/n8n-2.30.8.tgz",
"unpackedSize": 26919688
},
"dist-tags": {
"beta": "2.31.3",
"latest": "2.30.8",
"next": "2.31.3",
"rc": "2.31.4",
"stable": "2.30.8"
},
"latest_version": "2.30.8",
"maintainers": [
{
"email": "jan@n8n.io",
"name": "jan_n8n_io"
},
{
"email": "matias.huhta@n8n.io",
"name": "n8n-matsuuu"
},
{
"email": "cornelius@n8n.io",
"name": "cornelius_n8n_io"
},
{
"email": "tomi+npm@n8n.io",
"name": "tomin8n"
}
],
"num_versions": 1080,
"repository": {
"type": "git",
"url": "git+https://github.com/n8n-io/n8n.git"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && pnpm run build:data && pnpm run build:agent-library",
"build:agent-library": "node scripts/bundle-agent-library.mjs",
"build:data": "node scripts/build.mjs",
"build:unchecked": "tsc -p tsconfig.build.json --noCheck && tsc-alias -p tsconfig.build.json && pnpm run build:data && pnpm run build:agent-library",
"buildAndDev": "pnpm run build && pnpm run dev",
"clean": "rimraf dist .turbo",
"dev": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon --delay 1\"",
"dev:webhook": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon webhook\"",
"dev:worker": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon worker\"",
"format": "biome format --write .",
"format:check": "biome ci .",
"lint": "eslint . --quiet",
"lint:fix": "eslint . --fix",
"recording:export": "node scripts/agent-integration-recordings.mjs",
"recording:list": "node scripts/agent-integration-recordings.mjs --list",
"start": "node ../../scripts/os-normalize.mjs --dir bin n8n",
"test": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite vitest run",
"test:dev": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite vitest --silent=false",
"test:dev:win": "set N8N_LOG_LEVEL=silent&& set DB_SQLITE_POOL_SIZE=4&& set DB_TYPE=sqlite&& vitest --silent=false",
"test:integration": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite vitest run --config vitest.config.integration.ts",
"test:integration:changed": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite janitor test-scoped --runner=vitest -- --config vitest.config.integration.ts",
"test:mariadb": "echo true",
"test:mariadb:win": "echo true",
"test:postgres": "N8N_LOG_LEVEL=silent DB_TYPE=postgresdb DB_POSTGRESDB_SCHEMA=alt_schema DB_TABLE_PREFIX=test_ vitest run --config vitest.config.integration.ts",
"test:postgres:integration:tc": "N8N_LOG_LEVEL=silent vitest run --config vitest.config.integration.testcontainers.ts",
"test:postgres:migrations": "N8N_LOG_LEVEL=silent DB_TYPE=postgresdb DB_POSTGRESDB_SCHEMA=alt_schema DB_TABLE_PREFIX=test_ vitest run --config vitest.config.migration.ts --coverage.enabled=false",
"test:postgres:migrations:tc": "N8N_LOG_LEVEL=silent DB_TYPE=postgresdb DB_POSTGRESDB_SCHEMA=alt_schema DB_TABLE_PREFIX=test_ vitest run --config vitest.config.migration.testcontainers.ts --coverage.enabled=false",
"test:postgres:tc": "N8N_LOG_LEVEL=silent vitest run --config vitest.config.integration.testcontainers.ts",
"test:postgres:win": "set N8N_LOG_LEVEL=silent&& set DB_TYPE=postgresdb&& set DB_POSTGRESDB_SCHEMA=alt_schema&& set DB_TABLE_PREFIX=test_&& vitest run --config vitest.config.integration.ts",
"test:sqlite": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite vitest run --config vitest.config.integration.ts",
"test:sqlite:migrations": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite vitest run --config vitest.config.migration.ts --coverage.enabled=false",
"test:sqlite:migrations:tc": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite vitest run --config vitest.config.migration.testcontainers.ts --coverage.enabled=false",
"test:sqlite:win": "set N8N_LOG_LEVEL=silent&& set DB_SQLITE_POOL_SIZE=4&& set DB_TYPE=sqlite&& vitest run --config vitest.config.integration.ts",
"test:unit": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite vitest run",
"test:unit:changed": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite janitor test-scoped --runner=vitest",
"test:win": "set N8N_LOG_LEVEL=silent&& set DB_SQLITE_POOL_SIZE=4&& set DB_TYPE=sqlite&& vitest run",
"typecheck": "tsc --noEmit",
"watch": "tsc-watch -p tsconfig.build.json --onCompilationComplete \"tsc-alias -p tsconfig.build.json\""
},
"signal_details": {
"dist_tag_anomaly": "dist-tags.latest=2.30.8 but max published is 2.31.4",
"shared_repo_different_publisher": "repo 'git+https://github.com/n8n-io/n8n.git' also claimed by 10 package(s) under different publishers: ['npm/n8n-editor-ui', 'npm/@n8n/n8n-benchmark', 'npm/@n8n/client-oauth2'] ..."
},
"time": {
"created": "2019-04-24T23:48:19.822Z",
"modified": "2026-07-20T07:56:29.945Z"
}
}