-
-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "jellyfin-vue",
"private": true,
"type": "module",
"homepage": "https://jellyfin.org/",
"bugs": {
"url": "https://github.com/jellyfin/jellyfin-vue/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jellyfin/jellyfin-vue/"
},
"license": "GPL-3.0-only",
"author": "jellyfin-vue Contributors (https://github.com/jellyfin/jellyfin-vue/graphs/contributors)",
"workspaces": [
"frontend",
"packaging/tauri",
"packages/*"
],
"engines": {
"node": ">=22.11.0 <23.0.0",
"npm": ">=10.9.0",
"yarn": "yarn is not supported. Please use npm"
},
"scripts": {
"lint": "npm run lint -ws --if-present",
"lint:fix": "npm run lint:fix -ws --if-present",
"check:types": "npm run check:types -ws --if-present",
"analyze:cycles": "npm run analyze:cycles -ws --if-present",
"test": "npm run test -ws --if-present"
},
"devDependencies": {
"@eslint/config-inspector": "0.7.1",
"@types/node": "22.10.5",
"eslint": "9.17.0",
"jiti": "2.4.2",
"type-fest": "4.31.0",
"typescript": "5.7.2",
"vue-tsc": "2.2.0"
}
}