2021-08-29 05:00:52 +00:00
|
|
|
{
|
2022-09-15 04:36:44 +00:00
|
|
|
"name": "@jellyfin/sdk",
|
2024-10-28 20:37:55 +00:00
|
|
|
"version": "0.11.0",
|
2021-09-18 04:40:14 +00:00
|
|
|
"description": "A TypeScript SDK for Jellyfin.",
|
2021-08-29 05:00:52 +00:00
|
|
|
"keywords": [
|
|
|
|
"jellyfin"
|
|
|
|
],
|
2023-03-15 13:32:10 +00:00
|
|
|
"type": "module",
|
2022-03-15 04:10:08 +00:00
|
|
|
"main": "./lib/index.js",
|
|
|
|
"typings": "./lib/index.d.ts",
|
2021-09-19 04:22:04 +00:00
|
|
|
"license": "MPL-2.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-06-28 14:37:11 +00:00
|
|
|
"url": "https://github.com/jellyfin/jellyfin-sdk-typescript.git"
|
2021-09-19 04:22:04 +00:00
|
|
|
},
|
2021-08-29 05:00:52 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "npm run build:generated-client && npm run build:sdk",
|
|
|
|
"build:generated-client": "openapi-generator-cli generate",
|
2023-03-20 17:17:41 +00:00
|
|
|
"build:sdk": "rollup -c",
|
|
|
|
"clean:build:sdk": "rimraf lib && rollup -c",
|
2021-09-15 04:04:48 +00:00
|
|
|
"docs": "typedoc --tsconfig .",
|
2021-08-30 04:36:18 +00:00
|
|
|
"fix-schema": "node scripts/modify-schema.mjs openapi.json",
|
2021-09-16 20:27:43 +00:00
|
|
|
"lint": "eslint \".\"",
|
2021-09-24 13:37:29 +00:00
|
|
|
"prepublishOnly": "npm run clean:build:sdk",
|
2024-08-06 19:56:30 +00:00
|
|
|
"test": "vitest --exclude **/integration.test.ts",
|
|
|
|
"test:integration": "vitest integration"
|
2021-08-29 05:00:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-11-08 10:24:28 +00:00
|
|
|
"@openapitools/openapi-generator-cli": "2.15.3",
|
2024-10-23 05:16:13 +00:00
|
|
|
"@rollup/plugin-typescript": "12.1.1",
|
2024-11-03 04:15:46 +00:00
|
|
|
"@tsconfig/recommended": "1.0.8",
|
2024-03-26 02:24:13 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.3.1",
|
|
|
|
"@typescript-eslint/parser": "7.3.1",
|
2024-11-04 17:26:29 +00:00
|
|
|
"@vitest/coverage-v8": "2.1.4",
|
2024-03-01 22:28:00 +00:00
|
|
|
"eslint": "8.57.0",
|
2023-12-21 19:46:33 +00:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2024-03-19 03:33:04 +00:00
|
|
|
"eslint-plugin-vitest": "0.3.26",
|
2024-08-25 19:16:22 +00:00
|
|
|
"glob": "11.0.0",
|
2024-08-25 18:52:13 +00:00
|
|
|
"rimraf": "5.0.10",
|
2024-11-16 09:16:00 +00:00
|
|
|
"rollup": "4.25.0",
|
2024-11-08 17:12:26 +00:00
|
|
|
"typedoc": "0.26.11",
|
2024-10-16 00:39:12 +00:00
|
|
|
"typescript": "5.6.3",
|
2024-11-04 17:26:29 +00:00
|
|
|
"vitest": "2.1.4"
|
2021-08-29 05:00:52 +00:00
|
|
|
},
|
2023-04-10 23:21:00 +00:00
|
|
|
"peerDependencies": {
|
|
|
|
"axios": "^1.3.4"
|
2021-08-29 05:00:52 +00:00
|
|
|
}
|
|
|
|
}
|