jellyfin-sdk-typescript/package.json

49 lines
1.4 KiB
JSON
Raw Normal View History

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": {
"@openapitools/openapi-generator-cli": "2.14.1",
"@rollup/plugin-typescript": "12.1.1",
"@tsconfig/recommended": "1.0.8",
2024-11-07 14:33:24 +00:00
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
2024-11-04 17:26:29 +00:00
"@vitest/coverage-v8": "2.1.4",
2024-11-07 14:33:24 +00:00
"eslint": "8.57.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-vitest": "0.5.4",
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-10-14 00:25:10 +00:00
"rollup": "4.24.0",
2024-10-23 05:16:23 +00:00
"typedoc": "0.26.10",
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
}
}