-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "dynamic-weather-card",
"version": "0.5.0",
"description": "Динамическая карточка погоды для Home Assistant",
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "bun run build.ts",
"dev": "bun build src/index.ts --outfile=dynamic-weather-card.js --target=browser --format=esm --watch --define __VERSION__='\"dev\"'",
"lint": "bun run eslint src/",
"lint:fix": "bun run eslint src/ --fix",
"prebuild": "bun run lint",
"typecheck": "bun run tsc --noEmit"
},
"keywords": [
"home-assistant",
"homeassistant",
"lovelace",
"weather",
"card",
"animated"
],
"packageManager": "bun@1.3.6",
"author": "teuchezh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/teuchezh/dynamic-weather-card"
},
"dependencies": {
"@bybas/weather-icons": "^2.0.0",
"lit": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-plugin-lit": "^2.2.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}