Skip to content

Commit c6e040b

Browse files
fix: correct JSON syntax error in root package.json
Remove trailing comma after "typescript" dependency that was causing JSON parse errors. This fix is critical for npm install to work properly.
1 parent 3885375 commit c6e040b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"@types/node": "^20.19.26",
4242
"concurrently": "^8.2.2",
4343
"eslint": "^8.57.0",
44-
"typescript": "^5.9.3"
45-
"prettier": "^3.7.4",
44+
"typescript": "^5.9.3",
45+
"prettier": "^3.7.4"
4646
},
4747
"engines": {
4848
"node": ">=18.0.0",

0 commit comments

Comments
 (0)