// File: index.ts // Path: packages/scoring/src/index.ts // Project: AI Risk Index — airiskindex.io // Author: Simon-Pierre Boucher // Contact: contact@spboucher.ai // Copyright © 2026 Simon-Pierre Boucher. All rights reserved. // // Description: Public API of the pure, deterministic scoring engine. export { HIGH_EXPOSURE_THRESHOLD, scoreOccupation } from "./composite"; export { pressure, scoreTask } from "./task"; export type { OccupationScores, RatingBand, ScoreBand, TaskInput, TaskRatings, TaskScores, } from "./types"; export { INDEX_VERSION } from "./version"; export { DIMENSIONS, type DimensionKey, EXPOSURE_DIMENSIONS, INVERTED_DIMENSIONS, WEIGHTS, } from "./weights";