-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.08 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
42
43
{
"name": "@itsteddyyo/strategy-pack",
"version": "1.3.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/strategy-pack.umd.js",
"module": "./dist/strategy-pack.es.js",
"exports": {
".": {
"import": "./dist/strategy-pack.es.js",
"require": "./dist/strategy-pack.umd.js"
}
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@types/lodash": "^4.17.9",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^9.4.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"vite": "^5.4.8"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"typedoc": "typedoc ./src && node ./documentation/code/build_types.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsteddyyo/strategy-pack.git"
},
"author": "Florian Saller",
"license": "MIT",
"bugs": {
"url": "https://github.com/itsteddyyo/strategy-pack/issues"
},
"homepage": "https://github.com/itsteddyyo/strategy-pack#readme"
}