-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 752 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 752 Bytes
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
{
"name": "jellyha",
"version": "1.0.0",
"description": "Jellyfin Custom Integration for Home Assistant",
"main": "custom_components/jellyha/www/jellyha-cards.js",
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "eslint src --ext .ts",
"test": "vitest"
},
"keywords": [
"home-assistant",
"lovelace",
"jellyfin",
"hacs"
],
"author": "zupancicmarko",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"eslint": "^8.55.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"lit": "^3.1.0"
}
}