jellyfin-sdk-typescript/package.json
2023-02-06 23:33:59 +00:00

46 lines
1.3 KiB
JSON

{
"name": "@jellyfin/sdk",
"version": "0.7.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"
},
"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.2",
"@types/jest": "29.4.0",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"eslint": "8.33.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"jest": "29.4.1",
"jest-runner-groups": "2.2.0",
"ts-jest": "29.0.5",
"typedoc": "0.23.24",
"typescript": "4.9.5"
},
"dependencies": {
"axios": "1.2.6",
"compare-versions": "5.0.3"
}
}