jellyfin-sdk-typescript/package.json
dependabot[bot] d3b0e93f57
Bump axios from 0.26.1 to 0.27.2
Bumps [axios](https://github.com/axios/axios) from 0.26.1 to 0.27.2.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
- [Commits](https://github.com/axios/axios/compare/v0.26.1...v0.27.2)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-02 19:09:07 +00:00

52 lines
1.5 KiB
JSON

{
"name": "@thornbill/jellyfin-sdk",
"version": "0.4.1",
"description": "A TypeScript SDK for Jellyfin.",
"keywords": [
"jellyfin"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/thornbill/jellyfin-sdk-typescript.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:generated-client && npm run build:sdk",
"build:generated-client": "openapi-generator-cli generate",
"build:sdk": "tsc",
"clean:build:sdk": "tsc --build --clean && tsc",
"docs": "typedoc --tsconfig .",
"fix-schema": "node scripts/modify-schema.mjs openapi.json",
"lint": "eslint \".\"",
"prepublishOnly": "npm run clean:build:sdk",
"test": "jest --watchAll --group=unit"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.4.4",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^26.0.0",
"jest": "^27.2.0",
"jest-runner-groups": "^2.1.0",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.4",
"typedoc-plugin-markdown": "^3.11.0",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.27.2",
"compare-versions": "^4.0.0",
"normalize-url": "^6.1.0"
}
}