mirror of
https://github.com/jellyfin/jellyfin-sdk-typescript.git
synced 2024-11-23 14:09:43 +00:00
48 lines
1.4 KiB
JSON
48 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": "vitest --exclude **/integration.test.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@openapitools/openapi-generator-cli": "2.9.0",
|
|
"@rollup/plugin-typescript": "11.1.6",
|
|
"@tsconfig/recommended": "1.0.3",
|
|
"@typescript-eslint/eslint-plugin": "6.21.0",
|
|
"@typescript-eslint/parser": "6.21.0",
|
|
"@vitest/coverage-v8": "1.3.0",
|
|
"eslint": "8.57.0",
|
|
"eslint-plugin-import": "2.29.1",
|
|
"eslint-plugin-vitest": "0.3.22",
|
|
"glob": "10.3.10",
|
|
"rimraf": "5.0.5",
|
|
"rollup": "4.12.0",
|
|
"typedoc": "0.25.8",
|
|
"typescript": "5.3.3",
|
|
"vitest": "1.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"axios": "^1.3.4"
|
|
}
|
|
}
|