-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 993 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
{
"name": "bootstrap-grid-card",
"version": "0.2.2",
"description": "Bootstrap grid in lovelace UI.",
"private": true,
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"bootstrap",
"layout",
"grid",
"custom-cards"
],
"main": "src/bootstrap-grid-card.js",
"module": "src/bootstrap-grid-card.js",
"author": "ownbee",
"license": "MIT",
"dependencies": {
"bootstrap": "5.3.3",
"custom-card-helpers": "^1.9.0",
"lit": "3.1.2"
},
"devDependencies": {
"css-loader": "^6.10.0",
"extract-loader": "^5.1.0",
"lit-scss-loader": "^2.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"prebuild": "node -p \"'export const CARD_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "webpack",
"watch": "webpack --watch --mode=development"
}
}