jellyfin-sdk-typescript/package.json
2023-11-07 16:28:42 +00:00

50 lines
1.4 KiB
JSON

{
"name": "@jellyfin/sdk",
"version": "0.8.2",
"description": "A TypeScript SDK for Jellyfin.",
"keywords": [
"jellyfin"
],
"type": "module",
"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": "rollup -c",
"clean:build:sdk": "rimraf lib && rollup -c",
"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.7.0",
"@rollup/plugin-typescript": "11.1.5",
"@tsconfig/recommended": "1.0.3",
"@types/jest": "29.5.7",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"eslint": "8.52.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "27.6.0",
"glob": "10.3.10",
"jest": "29.7.0",
"jest-runner-groups": "2.2.0",
"rimraf": "5.0.5",
"rollup": "4.2.0",
"ts-jest": "29.1.1",
"typedoc": "0.25.2",
"typescript": "5.2.2"
},
"peerDependencies": {
"axios": "^1.3.4"
}
}