mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
e41a52286f
This reverts commit 9bc15994ce.
PR Close #55326
29 lines
754 B
JSON
29 lines
754 B
JSON
// #docplaster
|
|
// #docregion collection
|
|
{
|
|
"name": "my-lib",
|
|
"version": "0.0.1",
|
|
// #enddocregion collection
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.schematics.json",
|
|
"postbuild": "copyfiles schematics/*/schema.json schematics/*/files/** schematics/collection.json ../../dist/my-lib/"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/common": "^16.1.0",
|
|
"@angular/core": "^16.1.0"
|
|
},
|
|
// #docregion collection
|
|
"schematics": "./schematics/collection.json",
|
|
// #enddocregion collection
|
|
// #docregion ng-add
|
|
"ng-add": {
|
|
"save": "devDependencies"
|
|
},
|
|
// #enddocregion ng-add
|
|
"devDependencies": {
|
|
"copyfiles": "file:../../node_modules/copyfiles",
|
|
"typescript": "file:../../node_modules/typescript"
|
|
}
|
|
// #docregion collection
|
|
}
|