1
0
mirror of https://gitcode.com/github-mirrors/react-native-update-cli.git synced 2025-09-16 09:41:38 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

Enhance package.json: add lint script and update devDependencies

This commit is contained in:
sunnylqm
2025-01-05 21:22:14 +08:00
parent ba3d88627a
commit 12bddc446d
4 changed files with 949 additions and 4 deletions

View File

@@ -13,7 +13,8 @@
],
"scripts": {
"build": "swc src -d lib --strip-leading-paths",
"prepare": "npm run build && chmod +x lib/index.js"
"prepare": "npm run build && chmod +x lib/index.js",
"lint": "tsc --noEmit & biome check --write ."
},
"repository": {
"type": "git",
@@ -62,11 +63,10 @@
"node": ">= 10"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@swc/cli": "^0.5.1",
"@swc/core": "^1.9.3",
"@types/node": "^22.9.3",
"oxlint": "^0.13.1",
"typescript": "^5.7.2"
},
"packageManager": "yarn@1.22.22"
}
}