Procedurally generates a radio weather report
1{
2 "name": "morning-report",
3 "version": "0.0.1",
4 "description": "Procedurally generates a radio weather report",
5 "keywords": [
6 "weather",
7 "radio",
8 "audio"
9 ],
10 "repository": {
11 "type": "git",
12 "url": "ssh://git@git.sanin.dev:3689/corysanin/morning-report.git"
13 },
14 "license": "MIT",
15 "author": {
16 "name": "Cory Sanin",
17 "email": "corysanin@outlook.com",
18 "url": "https://sanin.dev/"
19 },
20 "type": "module",
21 "main": "distribution/index.js",
22 "scripts": {
23 "build": "tsc",
24 "start": "node distribution/index.js",
25 "test": "vitest"
26 },
27 "dependencies": {
28 "json5": "2.2.3",
29 "openweather-api-node": "3.1.5"
30 },
31 "devDependencies": {
32 "typescript": "5.9.2",
33 "@types/node": "24.3.0",
34 "vitest": "3.2.4",
35 "@vitest/coverage-v8": "3.2.4"
36 }
37}