/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/schematics_cli/schematic/schema.json
23 строки
607 B
Alan Agius
feat(@angular/cli): remove direct support for `cnpm`
20 авг 2025, 22:22
20 авг 2025, 22:22
f513089
Код
Авторство
О чём код?
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "SchematicsSchematicSchema", "title": "Schematic Options Schema", "type": "object", "properties": { "name": { "type": "string", "description": "The package name for the new schematic." }, "author": { "type": "string", "description": "Author for the new schematic." }, "packageManager": { "description": "The package manager used to install dependencies.", "type": "string", "enum": ["npm", "yarn", "pnpm", "bun"], "default": "npm" } }, "required": ["name"] }