Procedurally generates a radio weather report
1{
2 "name": "morning-report",
3 "version": "0.0.5",
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 "bin": {
23 "morning-report": "./distribution/src/index.js"
24 },
25 "files": [
26 "distribution"
27 ],
28 "scripts": {
29 "build": "tsc",
30 "start": "node distribution/src/index.js",
31 "test": "vitest"
32 },
33 "dependencies": {
34 "json5": "2.2.3",
35 "openweather-api-node": "3.1.5"
36 },
37 "devDependencies": {
38 "typescript": "5.9.3",
39 "@types/node": "24.10.1",
40 "vitest": "3.2.4",
41 "@vitest/coverage-v8": "3.2.4"
42 }
43}