-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
41 lines (41 loc) · 1019 Bytes
/
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": "hasl-departure-card",
"version": "3.4.1",
"description": "HASL Departure Lovelace Card",
"source": "src/index.ts",
"module": "dist/hasl4-departure-card.js",
"targets": {
"module": {
"includeNodeModules": true
}
},
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "NODE_ENV=production parcel build",
"watch": "parcel watch",
"serve": "NODE_ENV=production parcel serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@swc/helpers": "^0.5.6",
"lit": "^3.1.2"
},
"devDependencies": {
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^8.0.1",
"parcel": "^2.12.0",
"parcel-namer-rewrite": "^2.10.3-rc.2",
"typescript": "^5.4.2"
},
"volta": {
"node": "18.19.1"
},
"parcel-namer-rewrite": {
"chain": "@parcel/namer-default",
"hashing": "always",
"disable": false,
"rules": {
"DepartureCardEditor.(.*)": "hasl4-departure-card-editor.$1"
}
}
}