Detects when user changes same config setting 3+ times within 24 hours. Shows non-intrusive prompt offering help with guided calibration flow. Guided calibration features: - Test for false positives (walk around room) - Test for missed motion (sit still) - Suggest optimal value based on diurnal baseline SNR and link health - Apply suggested value button Files: - dashboard/js/proactive.js: Complete implementation with localStorage tracking Acceptance: - Help prompt fires after 3+ changes in 24h - Calibration flow tests both directions - Suggests value based on system data - Apply button works
35 lines
646 B
JSON
35 lines
646 B
JSON
{
|
|
"name": "kleur",
|
|
"version": "3.0.3",
|
|
"repository": "lukeed/kleur",
|
|
"description": "The fastest Node.js library for formatting terminal text with ANSI colors~!",
|
|
"license": "MIT",
|
|
"files": [
|
|
"*.js",
|
|
"*.d.ts"
|
|
],
|
|
"author": {
|
|
"name": "Luke Edwards",
|
|
"email": "luke.edwards05@gmail.com",
|
|
"url": "lukeed.com"
|
|
},
|
|
"scripts": {
|
|
"test": "tape test/*.js | tap-spec"
|
|
},
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"keywords": [
|
|
"ansi",
|
|
"cli",
|
|
"color",
|
|
"colors",
|
|
"console",
|
|
"terminal"
|
|
],
|
|
"types": "kleur.d.ts",
|
|
"devDependencies": {
|
|
"tap-spec": "^5.0.0",
|
|
"tape": "^4.9.1"
|
|
}
|
|
}
|