mirror of
https://github.com/jellyfin/jellyfin-sdk-typescript.git
synced 2024-11-27 00:01:19 +00:00
a27eba5d2b
The version check we needed is simple enough to implement ourselves, shaving off some bytes from the bundle size consumers will have when using the SDK
50 lines
1.4 KiB
JSON
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.6.0",
|
|
"@rollup/plugin-typescript": "11.1.0",
|
|
"@tsconfig/recommended": "1.0.2",
|
|
"@types/jest": "29.5.1",
|
|
"@typescript-eslint/eslint-plugin": "5.59.0",
|
|
"@typescript-eslint/parser": "5.59.0",
|
|
"eslint": "8.38.0",
|
|
"eslint-plugin-import": "2.27.5",
|
|
"eslint-plugin-jest": "27.2.1",
|
|
"glob": "9.3.5",
|
|
"jest": "29.5.0",
|
|
"jest-runner-groups": "2.2.0",
|
|
"rimraf": "4.4.1",
|
|
"rollup": "3.20.3",
|
|
"ts-jest": "29.1.0",
|
|
"typedoc": "0.24.4",
|
|
"typescript": "5.0.4"
|
|
},
|
|
"peerDependencies": {
|
|
"axios": "^1.3.4"
|
|
}
|
|
}
|