-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.47 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
{
"name": "@kud/duux-cli",
"version": "0.9.0",
"type": "module",
"description": "Control your Duux Whisper Flex 2 smart fan from the CLI",
"keywords": [
"duux",
"whisper-flex",
"smart-fan",
"cli",
"tui",
"ink",
"home-automation"
],
"license": "MIT",
"author": "Erwann Mest <m@kud.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/duux-cli.git"
},
"homepage": "https://github.com/kud/duux-cli#readme",
"bugs": {
"url": "https://github.com/kud/duux-cli/issues"
},
"bin": {
"duux": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.tsx",
"dev:discover": "tsx src/index.tsx discover",
"build": "tsup src/index.tsx --format esm --dts",
"build:watch": "tsup src/index.tsx --format esm --dts --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"link": "npm run build && npm link",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@kud/cli-update": "0.1.0",
"@kud/duux": "0.7.0",
"@kud/ink-ui": "0.12.0",
"chalk": "6.0.0",
"commander": "15.0.0",
"ink": "7.1.1",
"ink-spinner": "5.0.0",
"inquirer": "14.0.2",
"ora": "9.4.1",
"react": "19.2.8"
},
"devDependencies": {
"@types/node": "26.1.2",
"@types/react": "19.2.18",
"tsup": "8.5.1",
"tsx": "4.23.1",
"typescript": "6.0.3"
},
"overrides": {
"esbuild": "0.28.1"
},
"engines": {
"node": ">=22.0.0"
}
}