openmeteo
Version:
Open-Meteo Weather API
117 lines (116 loc) • 2.86 kB
JSON
{
"name": "openmeteo",
"version": "1.2.0",
"description": "Open-Meteo Weather API",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "echo 'disabled' || eslint ./src/ --fix",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/open-meteo/typescript.git"
},
"license": "MIT",
"author": {
"name": "Open-Meteo",
"email": "info@open-meteo.com",
"url": "https://open-meteo.com"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"weather"
],
"bugs": {
"url": "https://github.com/open-meteo/typescript/issues"
},
"homepage": "https://github.com/open-meteo/typescript#readme",
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"@openmeteo/sdk": "^1.19.0",
"flatbuffers": "^25.2.10"
}
}