fix: restore missing files (package.json etc) and fix sync script logic

This commit is contained in:
xuxiang
2026-01-31 18:55:45 +08:00
parent b1d03833b9
commit 0e5571998f
85 changed files with 17074 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Package Manager Configuration",
"type": "object",
"properties": {
"packageManager": {
"type": "string",
"enum": [
"npm",
"pnpm",
"yarn",
"bun"
]
}
},
"additionalProperties": false
}