mirror of
https://github.com/kennethnym/aris.git
synced 2026-02-02 05:01:17 +00:00
Implements @aris/data-source-weatherkit for fetching weather data from Apple WeatherKit REST API. - WeatherKitDataSource class implementing DataSource interface - Feed items: current, hourly, daily, and alerts - Priority adjustment based on weather conditions and alert severity - Unit conversion (metric/imperial) - Response validation with arktype - Test fixtures from real API responses Co-authored-by: Ona <no-reply@ona.com>
15 lines
252 B
JSON
15 lines
252 B
JSON
{
|
|
"name": "@aris/data-source-weatherkit",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"test": "bun test ."
|
|
},
|
|
"dependencies": {
|
|
"@aris/core": "workspace:*",
|
|
"arktype": "^2.1.0"
|
|
}
|
|
}
|