-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@glasshome/widget-cli",
"version": "0.10.2",
"description": "CLI for creating and managing GlassHome widgets",
"type": "module",
"bin": {
"glasshome-widget": "bin/cli.ts"
},
"scripts": {
"cli": "bun bin/cli.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"files": [
"bin",
"src",
"template"
],
"devDependencies": {
"@iconify/types": "^2.0.0",
"@types/bun": "latest",
"@types/semver": "^7.0.0",
"playwright": "^1.40.0",
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^1.6.0",
"@fontsource-variable/caveat": "^5.2.8",
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/geist-mono": "^5.2.8",
"@glasshome/sync-layer": "0.7.0",
"@glasshome/widget-contract": "0.2.0",
"@glasshome/widget-sdk": "1.10.0",
"@iconify-json/lucide": "^1.2.0",
"@iconify-json/mdi": "^1.2.3",
"@tailwindcss/vite": "^4.1.13",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"semver": "^7.6.0",
"ts-morph": "^28.0.0",
"vite-plugin-solid": "^2.11.0"
},
"peerDependencies": {
"playwright": "^1.40.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/glasshome/widget-cli.git"
},
"keywords": [
"glasshome",
"widget",
"cli",
"scaffold",
"home-assistant",
"dashboard",
"smart-home"
],
"homepage": "https://github.com/glasshome/widget-cli#readme",
"bugs": {
"url": "https://github.com/glasshome/widget-cli/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.0.0"
},
"author": "GlassHome Labs",
"license": "MIT"
}