// npm package
@stelnyx/report-theme
Unified theme + template helpers for Stelnyx CLI reports (LuxScope, LuxFaber, SecGate).
weekly
557
monthly
557
versions
4
maintainers
1
license
Apache-2.0
first publish
2026-05-18
publisher
doceno
tarball
82,172 B
AUTO-PUBLISHED·3 versions indexed·latest published 2026-05-23
// publisher campaignby doceno
3 caught packages from this accountThis is not an isolated catch. The same publisher has shipped 2 other packages that our pipeline flagged — the shape of a coordinated campaign, not a one-off. Each link below opens that sibling's analysis.
// offending code· @0.1.4· no static-pattern hits
- @0.1.4··AUTO-PUBLISHED·publisher: docenoheuristic 55/100static flags 0llm skippednew-publisher:4dknown-actor-target:teampcp:telnyx
// offending code· no static-pattern hits
--- install scripts --- ### prepublishOnly npm run build --- package.json (entry) --- { "name": "@stelnyx/report-theme", "version": "0.1.4", "description": "Unified theme + template helpers for Stelnyx CLI reports (LuxScope, LuxFaber, SecGate).", "license": "Apache-2.0", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./theme.css": "./dist/theme.css" }, "files": [ "dist", "src/theme.css", "assets" ], "scripts": { "build": "node scripts/build.mjs", "prepublishOnly": "npm run build" } } --- index.js (entry) --- // @stelnyx/report-theme — unified theme + template helpers // Build inlines src/theme.css into the css export below. export const css = `/* Unified report theme — SecGate palette + Lux sidebar shell */ :root { --bg: #0a0a0a; --surface: #141414; --surface-2: #1a1a1a; --border: #1f1f1f; --border-bright: #2a2a2a; --text: #e5e5e7; --muted: #a3a3a8; /* bumped from #8e8e93 for WCAG */ --faint: #6e6e73; --success: #34c759; --warn: #ff9500; --error: #ff3b30; --med-sev: #ffcc00; --accent: #e5e5e7; --pink: #ff2d78; --sidebar-w: 240px; --content-max: 1200px; --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; /* Aliases for LuxFaber --color-* convention */ --color-pink: var(--pink); --color-green: var(--success); --color-amber: var(--warn); --color-red: var(--error); --color-bg: var(--bg); --color-surface: var(--surface); --color-surface-2: var(--surface-2); --color-border: var(--border); --color-border-bright: var(--border-bright); --color-text: var(--text); --color-text-secondary: var(--muted); --color-muted: var(--muted);
