jellyfin-sdk-typescript/package.json

50 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",
2023-04-12 20:32:32 +00:00
"version": "0.8.2",
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",
"test": "jest --watchAll --group=unit"
2021-08-29 05:00:52 +00:00
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.7.0",
"@rollup/plugin-typescript": "11.1.4",
"@tsconfig/recommended": "1.0.3",
"@types/jest": "29.5.5",
2023-10-09 19:54:16 +00:00
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.50.0",
2023-08-25 20:44:24 +00:00
"eslint-plugin-import": "2.28.1",
2023-10-09 19:54:16 +00:00
"eslint-plugin-jest": "27.4.2",
2023-09-28 00:54:23 +00:00
"glob": "10.3.5",
2023-09-19 08:30:49 +00:00
"jest": "29.7.0",
2022-09-06 17:19:41 +00:00
"jest-runner-groups": "2.2.0",
2023-10-04 06:56:39 +00:00
"rimraf": "5.0.5",
2023-10-11 14:09:52 +00:00
"rollup": "3.29.4",
2023-08-26 00:23:14 +00:00
"ts-jest": "29.1.1",
2023-09-11 20:17:38 +00:00
"typedoc": "0.25.1",
2023-09-04 15:27:21 +00:00
"typescript": "5.2.2"
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
}
}