-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.1 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "plex-sdk",
"version": "4.6.0",
"type": "module",
"description": "Typescript SDK for Plex and Plex Media Server APIs",
"repository": "git@github.com:nass600/plex-sdk",
"license": "MIT",
"author": "Ignacio Velazquez <ivelazquez85@gmail.com>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"prelint": "npm run type-check",
"lint": "eslint . --fix",
"format": "prettier --write . --list-different",
"prepare": "husky",
"prepack": "npm run build",
"test": "vitest run --coverage",
"type-check": "tsc --noEmit"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"lodash-es": "^4.17.23",
"normalize-text": "^2.6.0",
"query-string": "^9.3.1"
},
"devDependencies": {
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^4.1.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.4",
"msw": "^2.12.10",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20.11.0",
"npm": ">=8.19.2"
},
"overrides": {
"lodash": "^4.17.23",
"tmp": "^0.2.3"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,html}": [
"prettier --write"
]
}
}