jellyfin-sdk-typescript/package.json

48 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-05-14 20:35:01 +00:00
"version": "0.9.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-02-24 02:49:00 +00:00
"test": "vitest --exclude **/integration.test.ts"
2021-08-29 05:00:52 +00:00
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.13.1",
"@rollup/plugin-typescript": "11.1.6",
"@tsconfig/recommended": "1.0.6",
2024-03-26 02:24:13 +00:00
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
2024-03-22 10:46:56 +00:00
"@vitest/coverage-v8": "1.4.0",
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-05-19 03:20:04 +00:00
"glob": "10.3.15",
2023-10-04 06:56:39 +00:00
"rimraf": "5.0.5",
2024-05-07 06:43:46 +00:00
"rollup": "4.17.2",
2024-03-17 19:42:08 +00:00
"typedoc": "0.25.12",
2024-03-27 19:35:37 +00:00
"typescript": "5.4.3",
2024-03-22 10:46:56 +00:00
"vitest": "1.4.0"
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
}
}