jellyfin-sdk-typescript/package.json

51 lines
1.4 KiB
JSON
Raw Normal View History

2021-08-29 05:00:52 +00:00
{
2021-09-19 04:22:04 +00:00
"name": "@thornbill/jellyfin-sdk",
2022-07-14 17:47:17 +00:00
"version": "0.6.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"
],
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
},
"publishConfig": {
"access": "public"
},
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",
2021-09-24 13:37:29 +00:00
"build:sdk": "tsc",
"clean:build:sdk": "tsc --build --clean && tsc",
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",
"test": "jest --watchAll --group=unit"
2021-08-29 05:00:52 +00:00
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.5.2",
"@tsconfig/recommended": "1.0.1",
"@types/jest": "27.0.1",
"@types/node": "18.7.15",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"eslint": "7.32.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "27.0.1",
"jest": "27.2.0",
"jest-runner-groups": "2.1.0",
"ts-jest": "27.0.5",
"typedoc": "0.23.14",
"typedoc-plugin-markdown": "3.11.0",
"typescript": "4.8.2"
2021-08-29 05:00:52 +00:00
},
"dependencies": {
"axios": "0.27.2",
"compare-versions": "4.1.4"
2021-08-29 05:00:52 +00:00
}
}