@wral/hsot-data 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs ADDED
@@ -0,0 +1,19 @@
1
+ import { D as o, H as e, a as t, b as r, c as n, d as l, e as c, f as i, g as H, h as g, p as d, r as m, i as R, s as S, j as f, t as p } from "./hsot-boxscore-BYV62gYv.js";
2
+ export {
3
+ o as DEFAULT_HREFS,
4
+ e as HsotBoxscore,
5
+ t as HsotRankings,
6
+ r as HsotSchool,
7
+ n as HsotScores,
8
+ l as HsotStandings,
9
+ c as computeRecords,
10
+ i as createClient,
11
+ H as fill,
12
+ g as gameWinner,
13
+ d as pollMovement,
14
+ m as recordString,
15
+ R as resolvePoll,
16
+ S as standingsRows,
17
+ f as streakOf,
18
+ p as teamRank
19
+ };
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@wral/hsot-data",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Lit web components for the HighSchoolOT public data pages: scores/schedules, standings, rankings, school pages, and box scores, rendered from api-hsot v1 read payloads.",
6
+ "author": "WRAL Digital",
7
+ "license": "UNLICENSED",
8
+ "peerDependencies": {
9
+ "lit": "^3.0.0"
10
+ },
11
+ "scripts": {
12
+ "dev": "vite",
13
+ "lint": "eslint",
14
+ "test": "node --test src/lib/*.test.mjs",
15
+ "prepublishOnly": "npm run build",
16
+ "build": "vite build && vite build --config vite.standalone.config.mjs"
17
+ },
18
+ "exports": {
19
+ ".": "./dist/index.mjs",
20
+ "./define": "./dist/define.mjs",
21
+ "./package.json": "./package.json"
22
+ },
23
+ "main": "./dist/index.mjs",
24
+ "module": "./dist/index.mjs",
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "engines": {
29
+ "node": ">=18"
30
+ },
31
+ "devDependencies": {
32
+ "eslint": "^9.36.0",
33
+ "vite": "^7.1.7",
34
+ "lit": "^3.3.1"
35
+ }
36
+ }