-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
48 lines (48 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@jellyfin/sdk",
"version": "0.11.0",
"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",
"test:integration": "vitest integration"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.15.3",
"@rollup/plugin-typescript": "12.1.1",
"@tsconfig/recommended": "1.0.8",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"@vitest/coverage-v8": "2.1.4",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-vitest": "0.3.26",
"glob": "11.0.0",
"rimraf": "5.0.10",
"rollup": "4.25.0",
"typedoc": "0.26.11",
"typescript": "5.6.3",
"vitest": "2.1.4"
},
"peerDependencies": {
"axios": "^1.3.4"
}
}