🌈️ apply a wallpaper based on the weather outside
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: add metadata for jsr publish

Angel Wang (Jun 21, 2026, 5:23 PM -0600) cf3003d1 c7b465e6

+14 -2
+1 -1
apply/application.ts
··· 1 - import { ImageAnalysisData } from "../analyze/analysis.ts" 1 + import type { ImageAnalysisData } from "../analyze/analysis.ts" 2 2 3 3 export interface ApplicationConfig { 4 4 latitude: number
+13 -1
deno.json
··· 1 1 { 2 + "name": "@angelcube/rainwall", 3 + "version": "0.1.0-alpha.stardance", 4 + "license": "GPL-3.0-only", 5 + "exports": { 6 + "./analyze": "./analyze/index.ts", 7 + "./apply": "./apply/index.ts" 8 + }, 2 9 "tasks": { 3 10 "compile-analyze": "deno compile --output build/rainwall-analyze -A analyze/index.ts", 4 11 "compile-apply": "deno compile --output build/rainwall-apply -A apply/index.ts", ··· 9 16 "@std/assert": "jsr:@std/assert@1", 10 17 "@std/path": "jsr:@std/path@^1.1.5" 11 18 }, 12 - "fmt": { "semiColons": false, "indentWidth": 4, "useTabs": true, "lineWidth": 120 } 19 + "fmt": { 20 + "semiColons": false, 21 + "indentWidth": 4, 22 + "useTabs": true, 23 + "lineWidth": 120 24 + } 13 25 }