Files
maybe/package.json
Josh Pigford 50be73fbb8 Upgrade Biome and refactor JavaScript template literals
- Update @biomejs/biome to latest version with caret (^) notation
- Refactor AI query and chat controllers to use template literals
- Standardize npm scripts formatting in package.json
2025-03-11 11:54:47 -05:00

19 lines
401 B
JSON

{
"devDependencies": {
"@biomejs/biome": "^1.9.3"
},
"name": "maybe",
"version": "1.0.0",
"description": "The OS for your personal finances",
"scripts": {
"style:check": "biome check",
"style:fix": "biome check --write",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format:check": "biome format",
"format": "biome format --write"
},
"author": "",
"license": "ISC"
}