mirror of
https://github.com/jellyfin/jellyfin-sdk-typescript.git
synced 2024-11-27 00:01:19 +00:00
37 lines
1021 B
JSON
37 lines
1021 B
JSON
{
|
|
"name": "jellyfin-sdk-typescript",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"keywords": [
|
|
"jellyfin"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"typings": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "npm run build:generated-client && npm run build:sdk",
|
|
"build:generated-client": "openapi-generator-cli generate",
|
|
"build:sdk": "tsc --outDir dist/",
|
|
"docs": "typedoc --tsconfig .",
|
|
"fix-schema": "node scripts/modify-schema.mjs openapi.json",
|
|
"test": "jest --watchAll"
|
|
},
|
|
"license": "MPL-2.0",
|
|
"devDependencies": {
|
|
"@openapitools/openapi-generator-cli": "^2.3.10",
|
|
"@tsconfig/recommended": "^1.0.1",
|
|
"@types/jest": "^27.0.1",
|
|
"@types/node": "^16.7.4",
|
|
"@typescript-eslint/eslint-plugin": "^4.29.3",
|
|
"@typescript-eslint/parser": "^4.29.3",
|
|
"eslint": "^7.32.0",
|
|
"jest": "^27.1.0",
|
|
"ts-jest": "^27.0.5",
|
|
"typedoc": "^0.22.3",
|
|
"typedoc-plugin-markdown": "^3.11.0",
|
|
"typescript": "^4.4.2"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.21.1"
|
|
}
|
|
}
|