// npm 패키지
@stelnyx/report-theme
Unified theme + template helpers for Stelnyx CLI reports (LuxScope, LuxFaber, SecGate).
주간
557
월간
557
버전
4
메인테이너
1
라이선스
Apache-2.0
최초 publish
2026-05-18
publisher
doceno
tarball
82,172 B
AUTO-PUBLISHED·3개 버전 인덱싱됨·최근 publish: 2026-05-23
// publisher 캠페인by doceno
이 계정에서 catch된 패키지 3건고립된 catch가 아닙니다. 동일 publisher가 2개의 다른 패키지를 추가로 발행했고, 모두 파이프라인이 catch했습니다 — 일회성이 아닌 조직적 캠페인의 형태. 아래 링크는 각 형제 catch의 분석으로 이동합니다.
// 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);
