Files
mysa-js-sdk/package.json
dependabot[bot] be5d67b820 chore(deps-dev): Bump the dev-dependencies group across 1 directory with 7 updates
Bumps the dev-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@semantic-release/npm](https://github.com/semantic-release/npm) | `13.1.2` | `13.1.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.1` | `25.2.0` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `61.4.1` | `62.5.0` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.8.1` |
| [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc) | `1.5.0` | `1.8.0` |
| [semantic-release](https://github.com/semantic-release/semantic-release) | `25.0.2` | `25.0.3` |



Updates `@semantic-release/npm` from 13.1.2 to 13.1.3
- [Release notes](https://github.com/semantic-release/npm/releases)
- [Commits](https://github.com/semantic-release/npm/compare/v13.1.2...v13.1.3)

Updates `@types/node` from 24.10.1 to 25.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/compare/v9.39.1...v9.39.2)

Updates `eslint-plugin-jsdoc` from 61.4.1 to 62.5.0
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](https://github.com/gajus/eslint-plugin-jsdoc/compare/v61.4.1...v62.5.0)

Updates `prettier` from 3.6.2 to 3.8.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/3.6.2...3.8.1)

Updates `prettier-plugin-jsdoc` from 1.5.0 to 1.8.0
- [Release notes](https://github.com/hosseinmd/prettier-plugin-jsdoc/releases)
- [Changelog](https://github.com/hosseinmd/prettier-plugin-jsdoc/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hosseinmd/prettier-plugin-jsdoc/commits)

Updates `semantic-release` from 25.0.2 to 25.0.3
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](https://github.com/semantic-release/semantic-release/compare/v25.0.2...v25.0.3)

---
updated-dependencies:
- dependency-name: "@semantic-release/npm"
  dependency-version: 13.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 62.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: prettier-plugin-jsdoc
  dependency-version: 1.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: semantic-release
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-02 04:34:31 +00:00

85 lines
2.1 KiB
JSON

{
"name": "mysa-js-sdk",
"version": "0.0.0",
"license": "MIT",
"private": false,
"description": "A JavaScript SDK for accessing Mysa smart thermostats.",
"keywords": [
"mysa",
"thermostat",
"sdk",
"api"
],
"publishConfig": {
"provenance": true
},
"author": {
"name": "Pascal Bourque",
"email": "pascal@cosmos.moi"
},
"bugs": {
"url": "https://github.com/bourquep/mysa-js-sdk/issues"
},
"homepage": "https://github.com/bourquep/mysa-js-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/bourquep/mysa-js-sdk.git"
},
"files": [
"README.md",
"LICENSE.txt",
"dist"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">=22.4.0"
},
"browser": false,
"scripts": {
"example": "tsx --watch ./example/main.ts",
"example:raw": "MYSA_OUTPUT_RAW_DATA=true tsx --watch ./example/main.ts",
"lint": "eslint --max-warnings 0 src/**/*.ts",
"style-lint": "prettier -c .",
"build": "tsup",
"build:docs": "typedoc"
},
"overrides": {
"brace-expansion": "^2.0.2"
},
"dependencies": {
"@aws-sdk/client-iot": "3.936.0",
"@aws-sdk/credential-providers": "3.940.0",
"amazon-cognito-identity-js": "6.3.16",
"aws-iot-device-sdk-v2": "1.23.1",
"dayjs": "1.11.19",
"lodash": "4.17.21",
"nanoid": "5.1.6"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@semantic-release/npm": "13.1.3",
"@types/lodash": "4.17.21",
"@types/node": "25.2.0",
"conventional-changelog-conventionalcommits": "9.1.0",
"dotenv": "17.2.3",
"eslint": "9.39.2",
"eslint-plugin-jsdoc": "62.5.0",
"eslint-plugin-tsdoc": "0.5.0",
"pino": "10.1.0",
"pino-pretty": "13.1.2",
"prettier": "3.8.1",
"prettier-plugin-jsdoc": "1.8.0",
"prettier-plugin-organize-imports": "4.3.0",
"semantic-release": "25.0.3",
"tsup": "8.5.0",
"tsx": "4.20.6",
"typedoc": "0.28.14",
"typedoc-material-theme": "1.4.1",
"typescript": "5.9.3",
"typescript-eslint": "8.46.2"
}
}