jellyfin-sdk-typescript/package.json
2022-09-06 13:16:08 +00:00

51 lines
1.4 KiB
JSON

{
"name": "@thornbill/jellyfin-sdk",
"version": "0.6.0",
"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/jellyfin/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.5.2",
"@tsconfig/recommended": "1.0.1",
"@types/jest": "27.0.1",
"@types/node": "18.7.15",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"eslint": "7.32.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "27.0.1",
"jest": "27.2.0",
"jest-runner-groups": "2.1.0",
"ts-jest": "27.0.5",
"typedoc": "0.23.14",
"typedoc-plugin-markdown": "3.11.0",
"typescript": "4.8.2"
},
"dependencies": {
"axios": "0.27.2",
"compare-versions": "4.1.4"
}
}