- 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
19 lines
401 B
JSON
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"
|
|
}
|