Files
morning-report/package.json
Cory Sanin 3a78d49974
All checks were successful
Unit tests / Unit tests (lts/*) (push) Successful in -1m48s
Unit tests / Unit tests (lts/hydrogen) (push) Successful in -1m56s
Unit tests / Unit tests (latest) (push) Successful in -1m44s
NPM Audit Check / Check NPM audit (push) Successful in -2m11s
bump dependencies
2025-10-15 00:25:50 -05:00

43 lines
920 B
JSON

{
"name": "morning-report",
"version": "0.0.3",
"description": "Procedurally generates a radio weather report",
"keywords": [
"weather",
"radio",
"audio"
],
"repository": {
"type": "git",
"url": "ssh://git@git.sanin.dev:3689/corysanin/morning-report.git"
},
"license": "MIT",
"author": {
"name": "Cory Sanin",
"email": "corysanin@outlook.com",
"url": "https://sanin.dev/"
},
"type": "module",
"main": "distribution/index.js",
"bin": {
"morning-report": "./distribution/src/index.js"
},
"files": [
"distribution"
],
"scripts": {
"build": "tsc",
"start": "node distribution/src/index.js",
"test": "vitest"
},
"dependencies": {
"json5": "2.2.3",
"openweather-api-node": "3.1.5"
},
"devDependencies": {
"typescript": "5.9.3",
"@types/node": "24.7.2",
"vitest": "3.2.4",
"@vitest/coverage-v8": "3.2.4"
}
}