mirror of
https://github.com/sweetwisdom/everything-claude-code-zh.git
synced 2026-03-21 22:10:09 +00:00
17 lines
317 B
JSON
17 lines
317 B
JSON
{
|
|
"$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
|
|
} |