@nikovirtala/projen-constructs 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +271 -283
- package/README.md +144 -11
- package/docs/api/classes/AwsCdkConstructLibraryProject.html +1 -1
- package/docs/api/classes/AwsCdkTypeScriptAppProject.html +1 -1
- package/docs/api/classes/JsiiProject.html +1 -1
- package/docs/api/classes/TypeScriptProject.html +1 -1
- package/docs/api/index.html +152 -12
- package/docs/api/interfaces/AwsCdkConstructLibraryProjectOptions.html +4 -7
- package/docs/api/interfaces/AwsCdkTypeScriptAppProjectOptions.html +4 -7
- package/docs/api/interfaces/JsiiProjectOptions.html +4 -7
- package/docs/api/interfaces/TypeScriptProjectOptions.html +4 -7
- package/lib/components/bundle-lambda-function-code.js +3 -3
- package/lib/components/colima.js +1 -1
- package/lib/components/homebrew.js +1 -1
- package/lib/components/lambda-function-construct-generator.js +1 -1
- package/lib/components/localstack.js +1 -1
- package/lib/components/mise.js +1 -1
- package/lib/components/typedoc.js +1 -1
- package/lib/components/vitest.js +1 -1
- package/lib/project-generator.d.ts +17 -1
- package/lib/project-generator.js +47 -4
- package/lib/projects/awscdk-construct-library-options.generated.d.ts +1 -2
- package/lib/projects/awscdk-construct-library-options.generated.js +1 -1
- package/lib/projects/awscdk-construct-library.generated.js +1 -1
- package/lib/projects/awscdk-typescript-app-options.generated.d.ts +1 -2
- package/lib/projects/awscdk-typescript-app-options.generated.js +1 -1
- package/lib/projects/awscdk-typescript-app.generated.js +1 -1
- package/lib/projects/jsii-options.generated.d.ts +1 -2
- package/lib/projects/jsii-options.generated.js +1 -1
- package/lib/projects/jsii.generated.js +1 -1
- package/lib/projects/typescript-options.generated.d.ts +1 -2
- package/lib/projects/typescript-options.generated.js +1 -1
- package/lib/projects/typescript.generated.js +1 -1
- package/package.json +5 -5
package/.jsii
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@mrgrain/cdk-esbuild": "^5.8.1",
|
|
15
15
|
"constructs": "^10.8.1",
|
|
16
|
-
"projen": "^0.101.
|
|
16
|
+
"projen": "^0.101.28"
|
|
17
17
|
},
|
|
18
18
|
"dependencyClosure": {
|
|
19
19
|
"@aws-cdk/asset-awscli-v1": {
|
|
@@ -4193,7 +4193,7 @@
|
|
|
4193
4193
|
},
|
|
4194
4194
|
"name": "@nikovirtala/projen-constructs",
|
|
4195
4195
|
"readme": {
|
|
4196
|
-
"markdown": "# @nikovirtala/projen-constructs\n\nProjen project types with standard configuration for consistent project setup across all repositories.\n\n## Installation\n\n```bash\npnpm add -D @nikovirtala/projen-constructs projen constructs\n```\n\n## Features\n\n- **Standard Configuration**: Opinionated defaults for author, release branch, package manager, Node.js, TypeScript, and tooling\n- **Automatic Project Type Discovery**: Generates `ProjectType` enum from Projen's JSII manifest (18 project types)\n- **Component System**: Reusable components (Vitest, Mise, TypeDoc, LocalStack, etc.)\n- **Code Generation**: `ProjectGenerator` creates project classes with standard configuration\n- **ES Modules**: TypeScript and CDK App projects use ES modules (JSII uses CommonJS)\n- **Code Quality**: Biome for formatting and linting\n- **Testing**: Vitest with coverage\n- **Auto-merge**: Enabled with auto-approve\n- **VSCode**: Recommended extensions and settings\n- **mise**: Node version management\n\n## Standard Configuration\n\n- **Author**: Niko Virtala (niko.virtala@hey.com)\n- **Default Release Branch**: main\n- **Package Manager**: pnpm 10\n- **Node Version**: 22.21.1\n- **TypeScript**: 5.9.3\n- **CDK Version**: 2.223.0 (for CDK projects)\n- **JSII Version**: ~5.9.3 (for JSII projects)\n\n## Customization\n\nOverride any option by passing it to the constructor:\n\n```typescript\nconst project = new JsiiProject({\n name: \"my-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-project.git\",\n minNodeVersion: \"20.0.0\",\n author: \"Custom Author\",\n authorAddress: \"custom@example.com\",\n mise: false,\n vitest: false,\n tsconfig: {\n compilerOptions: {\n noUnusedLocals: false,\n },\n },\n biomeOptions: {\n biomeConfig: {\n formatter: {\n lineWidth: 100,\n },\n },\n },\n});\n```\n\n## Usage\n\n### Projects\n\n#### AWS CDK Construct Library Project\n\n```typescript\nimport { AwsCdkConstructLibraryProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkConstructLibraryProject({\n name: \"my-cdk-construct\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-construct.git\",\n});\n\nproject.synth();\n```\n\n#### AWS CDK TypeScript App Project\n\n```typescript\nimport { AwsCdkTypeScriptAppProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkTypeScriptAppProject({\n name: \"my-cdk-app\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-app.git\",\n});\n\nproject.synth();\n```\n\n#### JSII Project\n\n```typescript\nimport { JsiiProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new JsiiProject({\n name: \"my-jsii-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-jsii-project.git\",\n});\n\nproject.synth();\n```\n\n#### TypeScript Project\n\n```typescript\nimport { TypeScriptProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new TypeScriptProject({\n name: \"my-typescript-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-typescript-project.git\",\n});\n\nproject.synth();\n```\n\n### Components\n\nThe package includes reusable components for common development tasks:\n\n#### Vitest\n\n[Vitest](https://vitest.dev) testing framework component.\n\n```typescript\nimport { Vitest } from \"@nikovirtala/projen-constructs\";\n\nnew Vitest(project, {\n vitestVersion: \"^4\",\n config: {\n coverageProvider: CoverageProvider.V8,\n coverageReporters: [CoverageReporter.TEXT, CoverageReporter.LCOV],\n },\n});\n```\n\n#### TypeDoc\n\n[TypeDoc](https://typedoc.org) documentation generation component.\n\n```typescript\nimport { TypeDoc, EntryPointStrategy } from \"@nikovirtala/projen-constructs\";\n\nnew TypeDoc(project, {\n version: \"^0.28\",\n typeDocConfig: {\n entryPointStrategy: EntryPointStrategy.EXPAND,\n out: \"docs/api\",\n exclude: [\"**/*.test.ts\"],\n },\n});\n```\n\n#### Mise\n\n[Mise](https://mise.jdx.dev) dev tools/runtimes management component.\n\n```typescript\nimport { Mise } from \"@nikovirtala/projen-constructs\";\n\nnew Mise(project, {\n nodeVersion: \"22.21.1\",\n});\n```\n\n#### Homebrew\n\n[Homebrew](https://brew.sh) package management component.\n\n```typescript\nimport { Homebrew } from \"@nikovirtala/projen-constructs\";\n\nconst homebrew = new Homebrew(project, {\n packages: [\"jq\", \"yq\"],\n});\n\nhomebrew.addPackage(\"gh\");\n```\n\n#### Colima\n\n[Colima](https://github.com/abiosoft/colima) container runtime component. Alternative for Docker.\n\n```typescript\nimport { Colima } from \"@nikovirtala/projen-constructs\";\n\nnew Colima(project);\n```\n\n#### LocalStack\n\n[LocalStack](https://www.localstack.cloud) AWS emulation component.\n\n```typescript\nimport { LocalStack } from \"@nikovirtala/projen-constructs\";\n\nnew LocalStack(project, {\n services: [\"s3\", \"lambda\", \"dynamodb\"],\n port: 4566,\n debug: true,\n});\n```\n\n#### LambdaFunctionConstructGenerator\n\nGenerates AWS CDK Lambda Function constructs and bundles their code.\n\n```typescript\nimport { LambdaFunctionConstructGenerator } from \"@nikovirtala/projen-constructs\";\n\nnew LambdaFunctionConstructGenerator(project, {\n sourceDir: \"src/handlers\",\n outputDir: \"src/constructs/lambda\",\n filePattern: \"*.lambda.ts\",\n esbuildOptions: {\n minify: true,\n sourcemap: true,\n },\n});\n```\n\n#### Bundler\n\nLow-level bundling utilities for Lambda functions.\n\n```typescript\nimport {\n Bundler,\n LambdaFunctionCodeBundle,\n} from \"@nikovirtala/projen-constructs\";\n\nconst bundler = new Bundler(project, {\n assetsDir: \"assets\",\n esbuildVersion: \"^0.25\",\n});\n\nnew LambdaFunctionCodeBundle(project, {\n entrypoint: \"src/my-function.lambda.ts\",\n extension: \".lambda.ts\",\n});\n```\n\n#### ProjectGenerator\n\nGenerates TypeScript project classes with standard configuration.\n\n```typescript\nimport { ProjectGenerator, ProjectType } from \"@nikovirtala/projen-constructs\";\n\nnew ProjectGenerator(project, {\n name: \"TypeScriptProject\",\n projectType: ProjectType.TYPESCRIPT,\n filePath: \"./src/projects/typescript.generated.ts\",\n components: [\n { componentClass: Mise },\n { componentClass: Vitest }, // Auto-detects VitestOptions from JSII manifest\n ],\n});\n```\n\nFeatures:\n- Automatically generates the `ProjectType` enum from Projen's JSII manifest\n- Auto-detects component options types from JSII manifests\n- Validates paths to prevent directory traversal attacks\n- Structured error handling with custom error classes\n"
|
|
4196
|
+
"markdown": "# @nikovirtala/projen-constructs\n\nProjen project types with standard configuration for consistent project setup across all repositories.\n\n## Installation\n\n```bash\npnpm add -D @nikovirtala/projen-constructs projen constructs\n```\n\nRequires pnpm 11 and `projen` >= 0.101.27. `@mrgrain/cdk-esbuild` and `constructs` are peer\ndependencies as well.\n\nTo create a project from scratch:\n\n```bash\npnpm dlx projen new --from @nikovirtala/projen-constructs aws_cdk_construct_library\n```\n\n## Features\n\n- **Standard Configuration**: Opinionated defaults for author, release branch, package manager, Node.js, TypeScript, and tooling\n- **Automatic Project Type Discovery**: Generates the `ProjectType` enum from Projen's JSII manifest (19 project types)\n- **Component System**: Reusable components (Vitest, TypeDoc, Mise, Homebrew, Colima, LocalStack, Lambda bundling)\n- **Code Generation**: `ProjectGenerator` creates project classes with standard configuration\n- **ES Modules**: TypeScript and CDK App projects use ES modules (JSII uses CommonJS)\n- **Code Quality**: Biome for formatting and linting\n- **Testing**: Vitest with coverage\n- **Auto-merge**: Enabled with auto-approve\n- **VSCode**: Recommended extensions and settings\n- **mise**: Node version management\n\n## Standard Configuration\n\n- **Author**: Niko Virtala (niko.virtala@hey.com)\n- **Default Release Branch**: main\n- **Package Manager**: pnpm 11.20.0\n- **Node Version**: 24.19.0\n- **TypeScript**: 6.0.3\n- **CDK Version**: 2.263.0 (for CDK projects)\n- **JSII Version**: ~6.0.3 (for JSII projects)\n\nThe AWS CDK, Node.js and TypeScript versions live in `src/versions.json` and are refreshed by the\n`update-versions` task, which the dependency upgrade workflow runs.\n\n### pnpm\n\npnpm reads its settings from `pnpm-workspace.yaml`, not `.npmrc`, since pnpm 11. Generated projects\nget:\n\n| Setting | Value | Reason |\n| ---------------------- | ----------------- | ------------------------------------------------------------------------------------------------------------ |\n| `nodeLinker` | `hoisted` | jsii tooling resolves dependencies from a flat `node_modules` |\n| `allowBuilds` | `esbuild: true` | esbuild links its platform binary in a postinstall script, and pnpm 11 fails an install with ignored builds |\n| `verifyDepsBeforeRun` | `false` | projen resolves the task `PATH` with `$(pnpm -c exec ...)`, which otherwise re-enters `pnpm install` and deadlocks |\n| `minimumReleaseAge` | `0` | the pnpm 11 default of 1440 minutes makes pnpm write `minimumReleaseAgeExclude` entries into this generated file |\n\n### TypeScript configuration\n\nProjen renders three configs, and none of them should be edited directly:\n\n- `tsconfig.json` compiles `src` to `lib`. For JSII projects, jsii validates it against its `strict`\n rule set, so it only carries compiler options jsii accepts.\n- `test/tsconfig.json` extends it and is type-check only. This is the config Vitest type checking and\n the editor use, and the one `tsconfigDev` points at.\n- `projenrc/tsconfig.json` covers `.projenrc.ts`.\n\n## Customization\n\nOverride any option by passing it to the constructor:\n\n```typescript\nconst project = new JsiiProject({\n name: \"my-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-project.git\",\n minNodeVersion: \"24.0.0\",\n author: \"Custom Author\",\n authorAddress: \"custom@example.com\",\n mise: false,\n vitest: false,\n tsconfig: {\n compilerOptions: {\n noUnusedLocals: false,\n },\n },\n biomeOptions: {\n biomeConfig: {\n formatter: {\n lineWidth: 100,\n },\n },\n },\n});\n```\n\nEvery component is exposed as an enable flag (`mise`, `vitest`, ...) plus an options property\n(`miseOptions`, `vitestOptions`, ...).\n\n## Usage\n\n### Projects\n\n#### AWS CDK Construct Library Project\n\n```typescript\nimport { AwsCdkConstructLibraryProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkConstructLibraryProject({\n name: \"my-cdk-construct\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-construct.git\",\n});\n\nproject.synth();\n```\n\n#### AWS CDK TypeScript App Project\n\n```typescript\nimport { AwsCdkTypeScriptAppProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkTypeScriptAppProject({\n name: \"my-cdk-app\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-app.git\",\n});\n\nproject.synth();\n```\n\n#### JSII Project\n\n```typescript\nimport { JsiiProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new JsiiProject({\n name: \"my-jsii-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-jsii-project.git\",\n});\n\nproject.synth();\n```\n\n#### TypeScript Project\n\n```typescript\nimport { TypeScriptProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new TypeScriptProject({\n name: \"my-typescript-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-typescript-project.git\",\n});\n\nproject.synth();\n```\n\n### Components\n\nThe package includes reusable components for common development tasks:\n\n#### Vitest\n\n[Vitest](https://vitest.dev) testing framework component.\n\n```typescript\nimport { Vitest } from \"@nikovirtala/projen-constructs\";\n\nnew Vitest(project, {\n vitestVersion: \"^4\",\n config: {\n coverageProvider: CoverageProvider.V8,\n coverageReporters: [CoverageReporter.TEXT, CoverageReporter.LCOV],\n },\n});\n```\n\nType checking runs against the project's development tsconfig (`test/tsconfig.json`) unless\n`config.typecheckTsconfig` says otherwise.\n\n#### TypeDoc\n\n[TypeDoc](https://typedoc.org) documentation generation component.\n\n```typescript\nimport { TypeDoc, EntryPointStrategy } from \"@nikovirtala/projen-constructs\";\n\nnew TypeDoc(project, {\n version: \"^0.28\",\n typeDocConfig: {\n entryPointStrategy: EntryPointStrategy.EXPAND,\n out: \"docs/api\",\n exclude: [\"**/*.test.ts\"],\n },\n});\n```\n\n#### Mise\n\n[Mise](https://mise.jdx.dev) dev tools/runtimes management component.\n\n```typescript\nimport { Mise } from \"@nikovirtala/projen-constructs\";\n\nnew Mise(project, {\n nodeVersion: \"24.19.0\",\n});\n```\n\n#### Homebrew\n\n[Homebrew](https://brew.sh) package management component. Writes a `Brewfile` and adds an\n`install:homebrew` task that bootstraps Homebrew and runs `brew bundle`.\n\n```typescript\nimport { Homebrew } from \"@nikovirtala/projen-constructs\";\n\nconst homebrew = new Homebrew(project, {\n packages: [\"jq\", \"yq\"],\n});\n\nhomebrew.addPackage(\"gh\");\n```\n\n#### Colima\n\n[Colima](https://github.com/abiosoft/colima) container runtime component. Alternative for Docker.\n\n```typescript\nimport { Colima } from \"@nikovirtala/projen-constructs\";\n\nnew Colima(project);\n```\n\n#### LocalStack\n\n[LocalStack](https://www.localstack.cloud) AWS emulation component.\n\n```typescript\nimport { LocalStack } from \"@nikovirtala/projen-constructs\";\n\nnew LocalStack(project, {\n services: [\"s3\", \"lambda\", \"dynamodb\"],\n port: 4566,\n debug: true,\n});\n```\n\n#### LambdaFunctionConstructGenerator\n\nGenerates AWS CDK Lambda Function constructs and bundles their code.\n\n```typescript\nimport { LambdaFunctionConstructGenerator } from \"@nikovirtala/projen-constructs\";\n\nnew LambdaFunctionConstructGenerator(project, {\n sourceDir: \"src/handlers\",\n outputDir: \"src/constructs/lambda\",\n filePattern: \"*.lambda.ts\",\n esbuildOptions: {\n minify: true,\n sourcemap: true,\n },\n});\n```\n\n#### Bundler\n\nLow-level bundling utilities for Lambda functions.\n\n```typescript\nimport {\n Bundler,\n LambdaFunctionCodeBundle,\n} from \"@nikovirtala/projen-constructs\";\n\nconst bundler = new Bundler(project, {\n assetsDir: \"assets\",\n esbuildVersion: \"^0.25\",\n});\n\nnew LambdaFunctionCodeBundle(project, {\n entrypoint: \"src/my-function.lambda.ts\",\n extension: \".lambda.ts\",\n});\n```\n\n#### ProjectGenerator\n\nGenerates TypeScript project classes with standard configuration.\n\n```typescript\nimport { ProjectGenerator, ProjectType } from \"@nikovirtala/projen-constructs\";\n\nnew ProjectGenerator(project, {\n name: \"TypeScriptProject\",\n projectType: ProjectType.TYPE_SCRIPT_PROJECT,\n filePath: \"./src/projects/typescript.generated.ts\",\n components: [\n { componentClass: Mise },\n { componentClass: Vitest }, // Auto-detects VitestOptions from JSII manifest\n ],\n});\n```\n\nFeatures:\n\n- Automatically generates the `ProjectType` enum from Projen's JSII manifest\n- Auto-detects component options types from JSII manifests\n- Strips Projen's `@pjnew` annotation from `packageManager`, which `projen new` would otherwise\n render into a generated `.projenrc.ts` as the package manager that ran the command\n- Validates paths to prevent directory traversal attacks\n- Structured error handling with custom error classes\n\n## Development\n\nThis project is managed by Projen and generates itself: `.projenrc.ts` defines the project using the\n`JsiiProject` type from `src/`. Configuration changes belong in `.projenrc.ts`, never in the\ngenerated files.\n\n```bash\npnpm projen # synthesize project files\npnpm build # synthesize, compile, test and package\npnpm test # biome, vitest, typedoc\npnpm test:watch # vitest in watch mode\npnpm test:update # update snapshots\npnpm biome # format and lint\npnpm docgen # regenerate API.md from the .jsii manifest\npnpm update-versions # refresh src/versions.json\npnpm upgrade # upgrade dependencies\n```\n\n### Build process\n\n```mermaid\nflowchart TD\n projenrc[\".projenrc.ts\"]\n\n subgraph synthesize[\"default (synthesize)\"]\n direction TB\n synth[\"tsx .projenrc.ts\"]\n generator[\"ProjectGenerator\"]\n generated[\"src/project-type.ts<br/>src/projects/*.generated.ts<br/>src/projects/*-options.generated.ts\"]\n projenfiles[\"package.json, tsconfig.json,<br/>pnpm-workspace.yaml, workflows, ...\"]\n brew[\"install:homebrew<br/>brew bundle\"]\n definecfg[\"bundle-vitest-define-config<br/>esbuild → lib/vitest-define-config.js\"]\n\n synth --> generator --> generated\n synth --> projenfiles\n synth --> brew\n synth --> definecfg\n end\n\n subgraph compile[\"compile\"]\n direction TB\n jsii[\"jsii<br/>validates tsconfig.json against the strict rule set\"]\n lib[\"lib/**\"]\n manifest[\".jsii manifest\"]\n\n jsii --> lib\n jsii --> manifest\n end\n\n subgraph test[\"test\"]\n direction TB\n biome[\"biome check --write\"]\n vitest[\"vitest run<br/>+ type checking\"]\n typedoc[\"typedoc → docs/api\"]\n\n biome --> vitest --> typedoc\n end\n\n subgraph package[\"package\"]\n direction TB\n pacmak[\"jsii-pacmak<br/>--pack-command 'pnpm pack'\"]\n dist[\"dist/js/*.tgz\"]\n\n pacmak --> dist\n end\n\n projenrc --> synthesize\n synthesize --> compile\n compile --> test\n test --> package\n\n manifest -. \"component options FQNs<br/>read on the next synthesis\" .-> generator\n docgen[\"docgen<br/>jsii-docgen → API.md\"]\n manifest --> docgen\n\n classDef artifact fill:#eef,stroke:#88a\n class generated,projenfiles,lib,manifest,dist artifact\n```\n\nThe dashed edge is the part worth knowing about: `ProjectGenerator` reads the committed `.jsii`\nmanifest to resolve component options types, so the manifest produced by `compile` feeds the *next*\nsynthesis. This is why `.jsii` is committed rather than ignored. A component options type that is\nmissing from the manifest is reported as a warning and its options property is left out of the\ngenerated interface, which is expected only while a new component is being introduced: compile once,\nthen synthesize again.\n\n`package` runs `package:js` on CI and `package-all` locally; both end up in `jsii-pacmak`.\n`docgen` is not part of `build` and has to be run explicitly after the manifest changes.\n"
|
|
4197
4197
|
},
|
|
4198
4198
|
"repository": {
|
|
4199
4199
|
"type": "git",
|
|
@@ -4322,7 +4322,7 @@
|
|
|
4322
4322
|
"immutable": true,
|
|
4323
4323
|
"locationInModule": {
|
|
4324
4324
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4325
|
-
"line":
|
|
4325
|
+
"line": 1245
|
|
4326
4326
|
},
|
|
4327
4327
|
"name": "name",
|
|
4328
4328
|
"type": {
|
|
@@ -4356,7 +4356,7 @@
|
|
|
4356
4356
|
"immutable": true,
|
|
4357
4357
|
"locationInModule": {
|
|
4358
4358
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4359
|
-
"line":
|
|
4359
|
+
"line": 1077
|
|
4360
4360
|
},
|
|
4361
4361
|
"name": "addPackageManagerToDevEngines",
|
|
4362
4362
|
"optional": true,
|
|
@@ -4375,7 +4375,7 @@
|
|
|
4375
4375
|
"immutable": true,
|
|
4376
4376
|
"locationInModule": {
|
|
4377
4377
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4378
|
-
"line":
|
|
4378
|
+
"line": 1071
|
|
4379
4379
|
},
|
|
4380
4380
|
"name": "allowLibraryDependencies",
|
|
4381
4381
|
"optional": true,
|
|
@@ -4394,7 +4394,7 @@
|
|
|
4394
4394
|
"immutable": true,
|
|
4395
4395
|
"locationInModule": {
|
|
4396
4396
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4397
|
-
"line":
|
|
4397
|
+
"line": 1063
|
|
4398
4398
|
},
|
|
4399
4399
|
"name": "allowScripts",
|
|
4400
4400
|
"optional": true,
|
|
@@ -4471,7 +4471,7 @@
|
|
|
4471
4471
|
"immutable": true,
|
|
4472
4472
|
"locationInModule": {
|
|
4473
4473
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4474
|
-
"line":
|
|
4474
|
+
"line": 1033
|
|
4475
4475
|
},
|
|
4476
4476
|
"name": "authorEmail",
|
|
4477
4477
|
"optional": true,
|
|
@@ -4488,7 +4488,7 @@
|
|
|
4488
4488
|
"immutable": true,
|
|
4489
4489
|
"locationInModule": {
|
|
4490
4490
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4491
|
-
"line":
|
|
4491
|
+
"line": 1028
|
|
4492
4492
|
},
|
|
4493
4493
|
"name": "authorName",
|
|
4494
4494
|
"optional": true,
|
|
@@ -4505,7 +4505,7 @@
|
|
|
4505
4505
|
"immutable": true,
|
|
4506
4506
|
"locationInModule": {
|
|
4507
4507
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4508
|
-
"line":
|
|
4508
|
+
"line": 1023
|
|
4509
4509
|
},
|
|
4510
4510
|
"name": "authorOrganization",
|
|
4511
4511
|
"optional": true,
|
|
@@ -4522,7 +4522,7 @@
|
|
|
4522
4522
|
"immutable": true,
|
|
4523
4523
|
"locationInModule": {
|
|
4524
4524
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4525
|
-
"line":
|
|
4525
|
+
"line": 1018
|
|
4526
4526
|
},
|
|
4527
4527
|
"name": "authorUrl",
|
|
4528
4528
|
"optional": true,
|
|
@@ -4540,7 +4540,7 @@
|
|
|
4540
4540
|
"immutable": true,
|
|
4541
4541
|
"locationInModule": {
|
|
4542
4542
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4543
|
-
"line":
|
|
4543
|
+
"line": 1163
|
|
4544
4544
|
},
|
|
4545
4545
|
"name": "autoApproveOptions",
|
|
4546
4546
|
"optional": true,
|
|
@@ -4577,7 +4577,7 @@
|
|
|
4577
4577
|
"immutable": true,
|
|
4578
4578
|
"locationInModule": {
|
|
4579
4579
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4580
|
-
"line":
|
|
4580
|
+
"line": 1013
|
|
4581
4581
|
},
|
|
4582
4582
|
"name": "autoDetectBin",
|
|
4583
4583
|
"optional": true,
|
|
@@ -4596,7 +4596,7 @@
|
|
|
4596
4596
|
"immutable": true,
|
|
4597
4597
|
"locationInModule": {
|
|
4598
4598
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4599
|
-
"line":
|
|
4599
|
+
"line": 1157
|
|
4600
4600
|
},
|
|
4601
4601
|
"name": "autoMerge",
|
|
4602
4602
|
"optional": true,
|
|
@@ -4615,7 +4615,7 @@
|
|
|
4615
4615
|
"immutable": true,
|
|
4616
4616
|
"locationInModule": {
|
|
4617
4617
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4618
|
-
"line":
|
|
4618
|
+
"line": 1149
|
|
4619
4619
|
},
|
|
4620
4620
|
"name": "autoMergeOptions",
|
|
4621
4621
|
"optional": true,
|
|
@@ -4633,7 +4633,7 @@
|
|
|
4633
4633
|
"immutable": true,
|
|
4634
4634
|
"locationInModule": {
|
|
4635
4635
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4636
|
-
"line":
|
|
4636
|
+
"line": 1007
|
|
4637
4637
|
},
|
|
4638
4638
|
"name": "bin",
|
|
4639
4639
|
"optional": true,
|
|
@@ -4691,7 +4691,7 @@
|
|
|
4691
4691
|
"immutable": true,
|
|
4692
4692
|
"locationInModule": {
|
|
4693
4693
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4694
|
-
"line":
|
|
4694
|
+
"line": 999
|
|
4695
4695
|
},
|
|
4696
4696
|
"name": "bugsEmail",
|
|
4697
4697
|
"optional": true,
|
|
@@ -4708,7 +4708,7 @@
|
|
|
4708
4708
|
"immutable": true,
|
|
4709
4709
|
"locationInModule": {
|
|
4710
4710
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4711
|
-
"line":
|
|
4711
|
+
"line": 994
|
|
4712
4712
|
},
|
|
4713
4713
|
"name": "bugsUrl",
|
|
4714
4714
|
"optional": true,
|
|
@@ -4780,7 +4780,7 @@
|
|
|
4780
4780
|
"immutable": true,
|
|
4781
4781
|
"locationInModule": {
|
|
4782
4782
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4783
|
-
"line":
|
|
4783
|
+
"line": 989
|
|
4784
4784
|
},
|
|
4785
4785
|
"name": "bundledDeps",
|
|
4786
4786
|
"optional": true,
|
|
@@ -4820,7 +4820,7 @@
|
|
|
4820
4820
|
"immutable": true,
|
|
4821
4821
|
"locationInModule": {
|
|
4822
4822
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4823
|
-
"line":
|
|
4823
|
+
"line": 974
|
|
4824
4824
|
},
|
|
4825
4825
|
"name": "bunVersion",
|
|
4826
4826
|
"optional": true,
|
|
@@ -4913,7 +4913,7 @@
|
|
|
4913
4913
|
"immutable": true,
|
|
4914
4914
|
"locationInModule": {
|
|
4915
4915
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4916
|
-
"line":
|
|
4916
|
+
"line": 1141
|
|
4917
4917
|
},
|
|
4918
4918
|
"name": "clobber",
|
|
4919
4919
|
"optional": true,
|
|
@@ -4932,7 +4932,7 @@
|
|
|
4932
4932
|
"immutable": true,
|
|
4933
4933
|
"locationInModule": {
|
|
4934
4934
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4935
|
-
"line":
|
|
4935
|
+
"line": 968
|
|
4936
4936
|
},
|
|
4937
4937
|
"name": "codeArtifactOptions",
|
|
4938
4938
|
"optional": true,
|
|
@@ -4986,7 +4986,7 @@
|
|
|
4986
4986
|
"immutable": true,
|
|
4987
4987
|
"locationInModule": {
|
|
4988
4988
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
4989
|
-
"line":
|
|
4989
|
+
"line": 1238
|
|
4990
4990
|
},
|
|
4991
4991
|
"name": "commitGenerated",
|
|
4992
4992
|
"optional": true,
|
|
@@ -5116,7 +5116,7 @@
|
|
|
5116
5116
|
"immutable": true,
|
|
5117
5117
|
"locationInModule": {
|
|
5118
5118
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5119
|
-
"line":
|
|
5119
|
+
"line": 961
|
|
5120
5120
|
},
|
|
5121
5121
|
"name": "dedupeDeps",
|
|
5122
5122
|
"optional": true,
|
|
@@ -5156,7 +5156,7 @@
|
|
|
5156
5156
|
"immutable": true,
|
|
5157
5157
|
"locationInModule": {
|
|
5158
5158
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5159
|
-
"line":
|
|
5159
|
+
"line": 941
|
|
5160
5160
|
},
|
|
5161
5161
|
"name": "deleteOrphanedLockFiles",
|
|
5162
5162
|
"optional": true,
|
|
@@ -5215,7 +5215,7 @@
|
|
|
5215
5215
|
"immutable": true,
|
|
5216
5216
|
"locationInModule": {
|
|
5217
5217
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5218
|
-
"line":
|
|
5218
|
+
"line": 931
|
|
5219
5219
|
},
|
|
5220
5220
|
"name": "deps",
|
|
5221
5221
|
"optional": true,
|
|
@@ -5278,7 +5278,7 @@
|
|
|
5278
5278
|
"immutable": true,
|
|
5279
5279
|
"locationInModule": {
|
|
5280
5280
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5281
|
-
"line":
|
|
5281
|
+
"line": 918
|
|
5282
5282
|
},
|
|
5283
5283
|
"name": "description",
|
|
5284
5284
|
"optional": true,
|
|
@@ -5296,7 +5296,7 @@
|
|
|
5296
5296
|
"immutable": true,
|
|
5297
5297
|
"locationInModule": {
|
|
5298
5298
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5299
|
-
"line":
|
|
5299
|
+
"line": 1135
|
|
5300
5300
|
},
|
|
5301
5301
|
"name": "devContainer",
|
|
5302
5302
|
"optional": true,
|
|
@@ -5318,7 +5318,7 @@
|
|
|
5318
5318
|
"immutable": true,
|
|
5319
5319
|
"locationInModule": {
|
|
5320
5320
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5321
|
-
"line":
|
|
5321
|
+
"line": 910
|
|
5322
5322
|
},
|
|
5323
5323
|
"name": "devDeps",
|
|
5324
5324
|
"optional": true,
|
|
@@ -5340,7 +5340,7 @@
|
|
|
5340
5340
|
"immutable": true,
|
|
5341
5341
|
"locationInModule": {
|
|
5342
5342
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5343
|
-
"line":
|
|
5343
|
+
"line": 893
|
|
5344
5344
|
},
|
|
5345
5345
|
"name": "devEngines",
|
|
5346
5346
|
"optional": true,
|
|
@@ -5466,7 +5466,7 @@
|
|
|
5466
5466
|
"immutable": true,
|
|
5467
5467
|
"locationInModule": {
|
|
5468
5468
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5469
|
-
"line":
|
|
5469
|
+
"line": 885
|
|
5470
5470
|
},
|
|
5471
5471
|
"name": "entrypoint",
|
|
5472
5472
|
"optional": true,
|
|
@@ -5544,7 +5544,7 @@
|
|
|
5544
5544
|
"immutable": true,
|
|
5545
5545
|
"locationInModule": {
|
|
5546
5546
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5547
|
-
"line":
|
|
5547
|
+
"line": 1129
|
|
5548
5548
|
},
|
|
5549
5549
|
"name": "github",
|
|
5550
5550
|
"optional": true,
|
|
@@ -5562,7 +5562,7 @@
|
|
|
5562
5562
|
"immutable": true,
|
|
5563
5563
|
"locationInModule": {
|
|
5564
5564
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5565
|
-
"line":
|
|
5565
|
+
"line": 1122
|
|
5566
5566
|
},
|
|
5567
5567
|
"name": "githubOptions",
|
|
5568
5568
|
"optional": true,
|
|
@@ -5601,7 +5601,7 @@
|
|
|
5601
5601
|
"immutable": true,
|
|
5602
5602
|
"locationInModule": {
|
|
5603
5603
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5604
|
-
"line":
|
|
5604
|
+
"line": 1232
|
|
5605
5605
|
},
|
|
5606
5606
|
"name": "gitIgnoreOptions",
|
|
5607
5607
|
"optional": true,
|
|
@@ -5618,7 +5618,7 @@
|
|
|
5618
5618
|
"immutable": true,
|
|
5619
5619
|
"locationInModule": {
|
|
5620
5620
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5621
|
-
"line":
|
|
5621
|
+
"line": 1227
|
|
5622
5622
|
},
|
|
5623
5623
|
"name": "gitOptions",
|
|
5624
5624
|
"optional": true,
|
|
@@ -5636,7 +5636,7 @@
|
|
|
5636
5636
|
"immutable": true,
|
|
5637
5637
|
"locationInModule": {
|
|
5638
5638
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5639
|
-
"line":
|
|
5639
|
+
"line": 1116
|
|
5640
5640
|
},
|
|
5641
5641
|
"name": "gitpod",
|
|
5642
5642
|
"optional": true,
|
|
@@ -5654,7 +5654,7 @@
|
|
|
5654
5654
|
"immutable": true,
|
|
5655
5655
|
"locationInModule": {
|
|
5656
5656
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5657
|
-
"line":
|
|
5657
|
+
"line": 1250
|
|
5658
5658
|
},
|
|
5659
5659
|
"name": "homebrew",
|
|
5660
5660
|
"optional": true,
|
|
@@ -5672,7 +5672,7 @@
|
|
|
5672
5672
|
"immutable": true,
|
|
5673
5673
|
"locationInModule": {
|
|
5674
5674
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5675
|
-
"line":
|
|
5675
|
+
"line": 1255
|
|
5676
5676
|
},
|
|
5677
5677
|
"name": "homebrewOptions",
|
|
5678
5678
|
"optional": true,
|
|
@@ -5689,7 +5689,7 @@
|
|
|
5689
5689
|
"immutable": true,
|
|
5690
5690
|
"locationInModule": {
|
|
5691
5691
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5692
|
-
"line":
|
|
5692
|
+
"line": 878
|
|
5693
5693
|
},
|
|
5694
5694
|
"name": "homepage",
|
|
5695
5695
|
"optional": true,
|
|
@@ -5764,7 +5764,7 @@
|
|
|
5764
5764
|
"immutable": true,
|
|
5765
5765
|
"locationInModule": {
|
|
5766
5766
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5767
|
-
"line":
|
|
5767
|
+
"line": 873
|
|
5768
5768
|
},
|
|
5769
5769
|
"name": "keywords",
|
|
5770
5770
|
"optional": true,
|
|
@@ -5860,7 +5860,7 @@
|
|
|
5860
5860
|
"immutable": true,
|
|
5861
5861
|
"locationInModule": {
|
|
5862
5862
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5863
|
-
"line":
|
|
5863
|
+
"line": 868
|
|
5864
5864
|
},
|
|
5865
5865
|
"name": "license",
|
|
5866
5866
|
"optional": true,
|
|
@@ -5878,7 +5878,7 @@
|
|
|
5878
5878
|
"immutable": true,
|
|
5879
5879
|
"locationInModule": {
|
|
5880
5880
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5881
|
-
"line":
|
|
5881
|
+
"line": 860
|
|
5882
5882
|
},
|
|
5883
5883
|
"name": "licensed",
|
|
5884
5884
|
"optional": true,
|
|
@@ -5896,7 +5896,7 @@
|
|
|
5896
5896
|
"immutable": true,
|
|
5897
5897
|
"locationInModule": {
|
|
5898
5898
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5899
|
-
"line":
|
|
5899
|
+
"line": 1222
|
|
5900
5900
|
},
|
|
5901
5901
|
"name": "logging",
|
|
5902
5902
|
"optional": true,
|
|
@@ -5934,7 +5934,7 @@
|
|
|
5934
5934
|
"immutable": true,
|
|
5935
5935
|
"locationInModule": {
|
|
5936
5936
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5937
|
-
"line":
|
|
5937
|
+
"line": 854
|
|
5938
5938
|
},
|
|
5939
5939
|
"name": "maxNodeVersion",
|
|
5940
5940
|
"optional": true,
|
|
@@ -5972,7 +5972,7 @@
|
|
|
5972
5972
|
"immutable": true,
|
|
5973
5973
|
"locationInModule": {
|
|
5974
5974
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5975
|
-
"line":
|
|
5975
|
+
"line": 843
|
|
5976
5976
|
},
|
|
5977
5977
|
"name": "minNodeVersion",
|
|
5978
5978
|
"optional": true,
|
|
@@ -5990,7 +5990,7 @@
|
|
|
5990
5990
|
"immutable": true,
|
|
5991
5991
|
"locationInModule": {
|
|
5992
5992
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
5993
|
-
"line":
|
|
5993
|
+
"line": 1260
|
|
5994
5994
|
},
|
|
5995
5995
|
"name": "mise",
|
|
5996
5996
|
"optional": true,
|
|
@@ -6008,7 +6008,7 @@
|
|
|
6008
6008
|
"immutable": true,
|
|
6009
6009
|
"locationInModule": {
|
|
6010
6010
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6011
|
-
"line":
|
|
6011
|
+
"line": 1265
|
|
6012
6012
|
},
|
|
6013
6013
|
"name": "miseOptions",
|
|
6014
6014
|
"optional": true,
|
|
@@ -6045,7 +6045,7 @@
|
|
|
6045
6045
|
"immutable": true,
|
|
6046
6046
|
"locationInModule": {
|
|
6047
6047
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6048
|
-
"line":
|
|
6048
|
+
"line": 828
|
|
6049
6049
|
},
|
|
6050
6050
|
"name": "npmAccess",
|
|
6051
6051
|
"optional": true,
|
|
@@ -6118,7 +6118,7 @@
|
|
|
6118
6118
|
"immutable": true,
|
|
6119
6119
|
"locationInModule": {
|
|
6120
6120
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6121
|
-
"line":
|
|
6121
|
+
"line": 820
|
|
6122
6122
|
},
|
|
6123
6123
|
"name": "npmProvenance",
|
|
6124
6124
|
"optional": true,
|
|
@@ -6137,7 +6137,7 @@
|
|
|
6137
6137
|
"immutable": true,
|
|
6138
6138
|
"locationInModule": {
|
|
6139
6139
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6140
|
-
"line":
|
|
6140
|
+
"line": 809
|
|
6141
6141
|
},
|
|
6142
6142
|
"name": "npmRegistryUrl",
|
|
6143
6143
|
"optional": true,
|
|
@@ -6155,7 +6155,7 @@
|
|
|
6155
6155
|
"immutable": true,
|
|
6156
6156
|
"locationInModule": {
|
|
6157
6157
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6158
|
-
"line":
|
|
6158
|
+
"line": 802
|
|
6159
6159
|
},
|
|
6160
6160
|
"name": "npmTokenSecret",
|
|
6161
6161
|
"optional": true,
|
|
@@ -6173,7 +6173,7 @@
|
|
|
6173
6173
|
"immutable": true,
|
|
6174
6174
|
"locationInModule": {
|
|
6175
6175
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6176
|
-
"line":
|
|
6176
|
+
"line": 796
|
|
6177
6177
|
},
|
|
6178
6178
|
"name": "npmTrustedPublishing",
|
|
6179
6179
|
"optional": true,
|
|
@@ -6192,7 +6192,7 @@
|
|
|
6192
6192
|
"immutable": true,
|
|
6193
6193
|
"locationInModule": {
|
|
6194
6194
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6195
|
-
"line":
|
|
6195
|
+
"line": 1216
|
|
6196
6196
|
},
|
|
6197
6197
|
"name": "outdir",
|
|
6198
6198
|
"optional": true,
|
|
@@ -6221,17 +6221,14 @@
|
|
|
6221
6221
|
{
|
|
6222
6222
|
"abstract": true,
|
|
6223
6223
|
"docs": {
|
|
6224
|
-
"
|
|
6225
|
-
"pjnew": "$PACKAGE_MANAGER"
|
|
6226
|
-
},
|
|
6227
|
-
"default": "- Detected from the calling process or `YARN_CLASSIC` if detection fails.",
|
|
6224
|
+
"default": "- pnpm",
|
|
6228
6225
|
"stability": "experimental",
|
|
6229
6226
|
"summary": "The Node Package Manager used to execute scripts."
|
|
6230
6227
|
},
|
|
6231
6228
|
"immutable": true,
|
|
6232
6229
|
"locationInModule": {
|
|
6233
6230
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6234
|
-
"line":
|
|
6231
|
+
"line": 790
|
|
6235
6232
|
},
|
|
6236
6233
|
"name": "packageManager",
|
|
6237
6234
|
"optional": true,
|
|
@@ -6269,7 +6266,7 @@
|
|
|
6269
6266
|
"immutable": true,
|
|
6270
6267
|
"locationInModule": {
|
|
6271
6268
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6272
|
-
"line":
|
|
6269
|
+
"line": 1205
|
|
6273
6270
|
},
|
|
6274
6271
|
"name": "parent",
|
|
6275
6272
|
"optional": true,
|
|
@@ -6405,7 +6402,7 @@
|
|
|
6405
6402
|
"immutable": true,
|
|
6406
6403
|
"locationInModule": {
|
|
6407
6404
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6408
|
-
"line":
|
|
6405
|
+
"line": 1200
|
|
6409
6406
|
},
|
|
6410
6407
|
"name": "projectTree",
|
|
6411
6408
|
"optional": true,
|
|
@@ -6424,7 +6421,7 @@
|
|
|
6424
6421
|
"immutable": true,
|
|
6425
6422
|
"locationInModule": {
|
|
6426
6423
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6427
|
-
"line":
|
|
6424
|
+
"line": 1194
|
|
6428
6425
|
},
|
|
6429
6426
|
"name": "projenCommand",
|
|
6430
6427
|
"optional": true,
|
|
@@ -6442,7 +6439,7 @@
|
|
|
6442
6439
|
"immutable": true,
|
|
6443
6440
|
"locationInModule": {
|
|
6444
6441
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6445
|
-
"line":
|
|
6442
|
+
"line": 1110
|
|
6446
6443
|
},
|
|
6447
6444
|
"name": "projenCredentials",
|
|
6448
6445
|
"optional": true,
|
|
@@ -6496,7 +6493,7 @@
|
|
|
6496
6493
|
"immutable": true,
|
|
6497
6494
|
"locationInModule": {
|
|
6498
6495
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6499
|
-
"line":
|
|
6496
|
+
"line": 1187
|
|
6500
6497
|
},
|
|
6501
6498
|
"name": "projenrcJson",
|
|
6502
6499
|
"optional": true,
|
|
@@ -6514,7 +6511,7 @@
|
|
|
6514
6511
|
"immutable": true,
|
|
6515
6512
|
"locationInModule": {
|
|
6516
6513
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6517
|
-
"line":
|
|
6514
|
+
"line": 1181
|
|
6518
6515
|
},
|
|
6519
6516
|
"name": "projenrcJsonOptions",
|
|
6520
6517
|
"optional": true,
|
|
@@ -6756,7 +6753,7 @@
|
|
|
6756
6753
|
"immutable": true,
|
|
6757
6754
|
"locationInModule": {
|
|
6758
6755
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
6759
|
-
"line":
|
|
6756
|
+
"line": 1104
|
|
6760
6757
|
},
|
|
6761
6758
|
"name": "readme",
|
|
6762
6759
|
"optional": true,
|
|
@@ -7008,7 +7005,7 @@
|
|
|
7008
7005
|
"immutable": true,
|
|
7009
7006
|
"locationInModule": {
|
|
7010
7007
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
7011
|
-
"line":
|
|
7008
|
+
"line": 1175
|
|
7012
7009
|
},
|
|
7013
7010
|
"name": "renovatebot",
|
|
7014
7011
|
"optional": true,
|
|
@@ -7026,7 +7023,7 @@
|
|
|
7026
7023
|
"immutable": true,
|
|
7027
7024
|
"locationInModule": {
|
|
7028
7025
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
7029
|
-
"line":
|
|
7026
|
+
"line": 1169
|
|
7030
7027
|
},
|
|
7031
7028
|
"name": "renovatebotOptions",
|
|
7032
7029
|
"optional": true,
|
|
@@ -7192,7 +7189,7 @@
|
|
|
7192
7189
|
"immutable": true,
|
|
7193
7190
|
"locationInModule": {
|
|
7194
7191
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
7195
|
-
"line":
|
|
7192
|
+
"line": 1098
|
|
7196
7193
|
},
|
|
7197
7194
|
"name": "stale",
|
|
7198
7195
|
"optional": true,
|
|
@@ -7211,7 +7208,7 @@
|
|
|
7211
7208
|
"immutable": true,
|
|
7212
7209
|
"locationInModule": {
|
|
7213
7210
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
7214
|
-
"line":
|
|
7211
|
+
"line": 1091
|
|
7215
7212
|
},
|
|
7216
7213
|
"name": "staleOptions",
|
|
7217
7214
|
"optional": true,
|
|
@@ -7365,7 +7362,7 @@
|
|
|
7365
7362
|
"immutable": true,
|
|
7366
7363
|
"locationInModule": {
|
|
7367
7364
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
7368
|
-
"line":
|
|
7365
|
+
"line": 1270
|
|
7369
7366
|
},
|
|
7370
7367
|
"name": "vitest",
|
|
7371
7368
|
"optional": true,
|
|
@@ -7383,7 +7380,7 @@
|
|
|
7383
7380
|
"immutable": true,
|
|
7384
7381
|
"locationInModule": {
|
|
7385
7382
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
7386
|
-
"line":
|
|
7383
|
+
"line": 1275
|
|
7387
7384
|
},
|
|
7388
7385
|
"name": "vitestOptions",
|
|
7389
7386
|
"optional": true,
|
|
@@ -7402,7 +7399,7 @@
|
|
|
7402
7399
|
"immutable": true,
|
|
7403
7400
|
"locationInModule": {
|
|
7404
7401
|
"filename": "src/projects/awscdk-construct-library-options.generated.ts",
|
|
7405
|
-
"line":
|
|
7402
|
+
"line": 1084
|
|
7406
7403
|
},
|
|
7407
7404
|
"name": "vscode",
|
|
7408
7405
|
"optional": true,
|
|
@@ -7657,7 +7654,7 @@
|
|
|
7657
7654
|
"immutable": true,
|
|
7658
7655
|
"locationInModule": {
|
|
7659
7656
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7660
|
-
"line":
|
|
7657
|
+
"line": 1186
|
|
7661
7658
|
},
|
|
7662
7659
|
"name": "name",
|
|
7663
7660
|
"type": {
|
|
@@ -7674,7 +7671,7 @@
|
|
|
7674
7671
|
"immutable": true,
|
|
7675
7672
|
"locationInModule": {
|
|
7676
7673
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7677
|
-
"line":
|
|
7674
|
+
"line": 1018
|
|
7678
7675
|
},
|
|
7679
7676
|
"name": "addPackageManagerToDevEngines",
|
|
7680
7677
|
"optional": true,
|
|
@@ -7693,7 +7690,7 @@
|
|
|
7693
7690
|
"immutable": true,
|
|
7694
7691
|
"locationInModule": {
|
|
7695
7692
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7696
|
-
"line":
|
|
7693
|
+
"line": 1012
|
|
7697
7694
|
},
|
|
7698
7695
|
"name": "allowLibraryDependencies",
|
|
7699
7696
|
"optional": true,
|
|
@@ -7712,7 +7709,7 @@
|
|
|
7712
7709
|
"immutable": true,
|
|
7713
7710
|
"locationInModule": {
|
|
7714
7711
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7715
|
-
"line":
|
|
7712
|
+
"line": 1004
|
|
7716
7713
|
},
|
|
7717
7714
|
"name": "allowScripts",
|
|
7718
7715
|
"optional": true,
|
|
@@ -7824,7 +7821,7 @@
|
|
|
7824
7821
|
"immutable": true,
|
|
7825
7822
|
"locationInModule": {
|
|
7826
7823
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7827
|
-
"line":
|
|
7824
|
+
"line": 974
|
|
7828
7825
|
},
|
|
7829
7826
|
"name": "authorEmail",
|
|
7830
7827
|
"optional": true,
|
|
@@ -7841,7 +7838,7 @@
|
|
|
7841
7838
|
"immutable": true,
|
|
7842
7839
|
"locationInModule": {
|
|
7843
7840
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7844
|
-
"line":
|
|
7841
|
+
"line": 969
|
|
7845
7842
|
},
|
|
7846
7843
|
"name": "authorName",
|
|
7847
7844
|
"optional": true,
|
|
@@ -7858,7 +7855,7 @@
|
|
|
7858
7855
|
"immutable": true,
|
|
7859
7856
|
"locationInModule": {
|
|
7860
7857
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7861
|
-
"line":
|
|
7858
|
+
"line": 964
|
|
7862
7859
|
},
|
|
7863
7860
|
"name": "authorOrganization",
|
|
7864
7861
|
"optional": true,
|
|
@@ -7875,7 +7872,7 @@
|
|
|
7875
7872
|
"immutable": true,
|
|
7876
7873
|
"locationInModule": {
|
|
7877
7874
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7878
|
-
"line":
|
|
7875
|
+
"line": 959
|
|
7879
7876
|
},
|
|
7880
7877
|
"name": "authorUrl",
|
|
7881
7878
|
"optional": true,
|
|
@@ -7893,7 +7890,7 @@
|
|
|
7893
7890
|
"immutable": true,
|
|
7894
7891
|
"locationInModule": {
|
|
7895
7892
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7896
|
-
"line":
|
|
7893
|
+
"line": 1104
|
|
7897
7894
|
},
|
|
7898
7895
|
"name": "autoApproveOptions",
|
|
7899
7896
|
"optional": true,
|
|
@@ -7930,7 +7927,7 @@
|
|
|
7930
7927
|
"immutable": true,
|
|
7931
7928
|
"locationInModule": {
|
|
7932
7929
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7933
|
-
"line":
|
|
7930
|
+
"line": 954
|
|
7934
7931
|
},
|
|
7935
7932
|
"name": "autoDetectBin",
|
|
7936
7933
|
"optional": true,
|
|
@@ -7949,7 +7946,7 @@
|
|
|
7949
7946
|
"immutable": true,
|
|
7950
7947
|
"locationInModule": {
|
|
7951
7948
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7952
|
-
"line":
|
|
7949
|
+
"line": 1098
|
|
7953
7950
|
},
|
|
7954
7951
|
"name": "autoMerge",
|
|
7955
7952
|
"optional": true,
|
|
@@ -7968,7 +7965,7 @@
|
|
|
7968
7965
|
"immutable": true,
|
|
7969
7966
|
"locationInModule": {
|
|
7970
7967
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7971
|
-
"line":
|
|
7968
|
+
"line": 1090
|
|
7972
7969
|
},
|
|
7973
7970
|
"name": "autoMergeOptions",
|
|
7974
7971
|
"optional": true,
|
|
@@ -7986,7 +7983,7 @@
|
|
|
7986
7983
|
"immutable": true,
|
|
7987
7984
|
"locationInModule": {
|
|
7988
7985
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
7989
|
-
"line":
|
|
7986
|
+
"line": 948
|
|
7990
7987
|
},
|
|
7991
7988
|
"name": "bin",
|
|
7992
7989
|
"optional": true,
|
|
@@ -8044,7 +8041,7 @@
|
|
|
8044
8041
|
"immutable": true,
|
|
8045
8042
|
"locationInModule": {
|
|
8046
8043
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8047
|
-
"line":
|
|
8044
|
+
"line": 940
|
|
8048
8045
|
},
|
|
8049
8046
|
"name": "bugsEmail",
|
|
8050
8047
|
"optional": true,
|
|
@@ -8061,7 +8058,7 @@
|
|
|
8061
8058
|
"immutable": true,
|
|
8062
8059
|
"locationInModule": {
|
|
8063
8060
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8064
|
-
"line":
|
|
8061
|
+
"line": 935
|
|
8065
8062
|
},
|
|
8066
8063
|
"name": "bugsUrl",
|
|
8067
8064
|
"optional": true,
|
|
@@ -8152,7 +8149,7 @@
|
|
|
8152
8149
|
"immutable": true,
|
|
8153
8150
|
"locationInModule": {
|
|
8154
8151
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8155
|
-
"line":
|
|
8152
|
+
"line": 930
|
|
8156
8153
|
},
|
|
8157
8154
|
"name": "bundledDeps",
|
|
8158
8155
|
"optional": true,
|
|
@@ -8192,7 +8189,7 @@
|
|
|
8192
8189
|
"immutable": true,
|
|
8193
8190
|
"locationInModule": {
|
|
8194
8191
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8195
|
-
"line":
|
|
8192
|
+
"line": 915
|
|
8196
8193
|
},
|
|
8197
8194
|
"name": "bunVersion",
|
|
8198
8195
|
"optional": true,
|
|
@@ -8284,7 +8281,7 @@
|
|
|
8284
8281
|
"immutable": true,
|
|
8285
8282
|
"locationInModule": {
|
|
8286
8283
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8287
|
-
"line":
|
|
8284
|
+
"line": 1082
|
|
8288
8285
|
},
|
|
8289
8286
|
"name": "clobber",
|
|
8290
8287
|
"optional": true,
|
|
@@ -8303,7 +8300,7 @@
|
|
|
8303
8300
|
"immutable": true,
|
|
8304
8301
|
"locationInModule": {
|
|
8305
8302
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8306
|
-
"line":
|
|
8303
|
+
"line": 909
|
|
8307
8304
|
},
|
|
8308
8305
|
"name": "codeArtifactOptions",
|
|
8309
8306
|
"optional": true,
|
|
@@ -8357,7 +8354,7 @@
|
|
|
8357
8354
|
"immutable": true,
|
|
8358
8355
|
"locationInModule": {
|
|
8359
8356
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8360
|
-
"line":
|
|
8357
|
+
"line": 1179
|
|
8361
8358
|
},
|
|
8362
8359
|
"name": "commitGenerated",
|
|
8363
8360
|
"optional": true,
|
|
@@ -8455,7 +8452,7 @@
|
|
|
8455
8452
|
"immutable": true,
|
|
8456
8453
|
"locationInModule": {
|
|
8457
8454
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8458
|
-
"line":
|
|
8455
|
+
"line": 902
|
|
8459
8456
|
},
|
|
8460
8457
|
"name": "dedupeDeps",
|
|
8461
8458
|
"optional": true,
|
|
@@ -8495,7 +8492,7 @@
|
|
|
8495
8492
|
"immutable": true,
|
|
8496
8493
|
"locationInModule": {
|
|
8497
8494
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8498
|
-
"line":
|
|
8495
|
+
"line": 882
|
|
8499
8496
|
},
|
|
8500
8497
|
"name": "deleteOrphanedLockFiles",
|
|
8501
8498
|
"optional": true,
|
|
@@ -8554,7 +8551,7 @@
|
|
|
8554
8551
|
"immutable": true,
|
|
8555
8552
|
"locationInModule": {
|
|
8556
8553
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8557
|
-
"line":
|
|
8554
|
+
"line": 872
|
|
8558
8555
|
},
|
|
8559
8556
|
"name": "deps",
|
|
8560
8557
|
"optional": true,
|
|
@@ -8617,7 +8614,7 @@
|
|
|
8617
8614
|
"immutable": true,
|
|
8618
8615
|
"locationInModule": {
|
|
8619
8616
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8620
|
-
"line":
|
|
8617
|
+
"line": 859
|
|
8621
8618
|
},
|
|
8622
8619
|
"name": "description",
|
|
8623
8620
|
"optional": true,
|
|
@@ -8635,7 +8632,7 @@
|
|
|
8635
8632
|
"immutable": true,
|
|
8636
8633
|
"locationInModule": {
|
|
8637
8634
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8638
|
-
"line":
|
|
8635
|
+
"line": 1076
|
|
8639
8636
|
},
|
|
8640
8637
|
"name": "devContainer",
|
|
8641
8638
|
"optional": true,
|
|
@@ -8657,7 +8654,7 @@
|
|
|
8657
8654
|
"immutable": true,
|
|
8658
8655
|
"locationInModule": {
|
|
8659
8656
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8660
|
-
"line":
|
|
8657
|
+
"line": 851
|
|
8661
8658
|
},
|
|
8662
8659
|
"name": "devDeps",
|
|
8663
8660
|
"optional": true,
|
|
@@ -8679,7 +8676,7 @@
|
|
|
8679
8676
|
"immutable": true,
|
|
8680
8677
|
"locationInModule": {
|
|
8681
8678
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8682
|
-
"line":
|
|
8679
|
+
"line": 834
|
|
8683
8680
|
},
|
|
8684
8681
|
"name": "devEngines",
|
|
8685
8682
|
"optional": true,
|
|
@@ -8787,7 +8784,7 @@
|
|
|
8787
8784
|
"immutable": true,
|
|
8788
8785
|
"locationInModule": {
|
|
8789
8786
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8790
|
-
"line":
|
|
8787
|
+
"line": 826
|
|
8791
8788
|
},
|
|
8792
8789
|
"name": "entrypoint",
|
|
8793
8790
|
"optional": true,
|
|
@@ -8860,7 +8857,7 @@
|
|
|
8860
8857
|
"immutable": true,
|
|
8861
8858
|
"locationInModule": {
|
|
8862
8859
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8863
|
-
"line":
|
|
8860
|
+
"line": 1070
|
|
8864
8861
|
},
|
|
8865
8862
|
"name": "github",
|
|
8866
8863
|
"optional": true,
|
|
@@ -8878,7 +8875,7 @@
|
|
|
8878
8875
|
"immutable": true,
|
|
8879
8876
|
"locationInModule": {
|
|
8880
8877
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8881
|
-
"line":
|
|
8878
|
+
"line": 1063
|
|
8882
8879
|
},
|
|
8883
8880
|
"name": "githubOptions",
|
|
8884
8881
|
"optional": true,
|
|
@@ -8917,7 +8914,7 @@
|
|
|
8917
8914
|
"immutable": true,
|
|
8918
8915
|
"locationInModule": {
|
|
8919
8916
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8920
|
-
"line":
|
|
8917
|
+
"line": 1173
|
|
8921
8918
|
},
|
|
8922
8919
|
"name": "gitIgnoreOptions",
|
|
8923
8920
|
"optional": true,
|
|
@@ -8934,7 +8931,7 @@
|
|
|
8934
8931
|
"immutable": true,
|
|
8935
8932
|
"locationInModule": {
|
|
8936
8933
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8937
|
-
"line":
|
|
8934
|
+
"line": 1168
|
|
8938
8935
|
},
|
|
8939
8936
|
"name": "gitOptions",
|
|
8940
8937
|
"optional": true,
|
|
@@ -8952,7 +8949,7 @@
|
|
|
8952
8949
|
"immutable": true,
|
|
8953
8950
|
"locationInModule": {
|
|
8954
8951
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8955
|
-
"line":
|
|
8952
|
+
"line": 1057
|
|
8956
8953
|
},
|
|
8957
8954
|
"name": "gitpod",
|
|
8958
8955
|
"optional": true,
|
|
@@ -8970,7 +8967,7 @@
|
|
|
8970
8967
|
"immutable": true,
|
|
8971
8968
|
"locationInModule": {
|
|
8972
8969
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8973
|
-
"line":
|
|
8970
|
+
"line": 1191
|
|
8974
8971
|
},
|
|
8975
8972
|
"name": "homebrew",
|
|
8976
8973
|
"optional": true,
|
|
@@ -8988,7 +8985,7 @@
|
|
|
8988
8985
|
"immutable": true,
|
|
8989
8986
|
"locationInModule": {
|
|
8990
8987
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
8991
|
-
"line":
|
|
8988
|
+
"line": 1196
|
|
8992
8989
|
},
|
|
8993
8990
|
"name": "homebrewOptions",
|
|
8994
8991
|
"optional": true,
|
|
@@ -9005,7 +9002,7 @@
|
|
|
9005
9002
|
"immutable": true,
|
|
9006
9003
|
"locationInModule": {
|
|
9007
9004
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9008
|
-
"line":
|
|
9005
|
+
"line": 819
|
|
9009
9006
|
},
|
|
9010
9007
|
"name": "homepage",
|
|
9011
9008
|
"optional": true,
|
|
@@ -9058,7 +9055,7 @@
|
|
|
9058
9055
|
"immutable": true,
|
|
9059
9056
|
"locationInModule": {
|
|
9060
9057
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9061
|
-
"line":
|
|
9058
|
+
"line": 814
|
|
9062
9059
|
},
|
|
9063
9060
|
"name": "keywords",
|
|
9064
9061
|
"optional": true,
|
|
@@ -9154,7 +9151,7 @@
|
|
|
9154
9151
|
"immutable": true,
|
|
9155
9152
|
"locationInModule": {
|
|
9156
9153
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9157
|
-
"line":
|
|
9154
|
+
"line": 809
|
|
9158
9155
|
},
|
|
9159
9156
|
"name": "license",
|
|
9160
9157
|
"optional": true,
|
|
@@ -9172,7 +9169,7 @@
|
|
|
9172
9169
|
"immutable": true,
|
|
9173
9170
|
"locationInModule": {
|
|
9174
9171
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9175
|
-
"line":
|
|
9172
|
+
"line": 801
|
|
9176
9173
|
},
|
|
9177
9174
|
"name": "licensed",
|
|
9178
9175
|
"optional": true,
|
|
@@ -9190,7 +9187,7 @@
|
|
|
9190
9187
|
"immutable": true,
|
|
9191
9188
|
"locationInModule": {
|
|
9192
9189
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9193
|
-
"line":
|
|
9190
|
+
"line": 1163
|
|
9194
9191
|
},
|
|
9195
9192
|
"name": "logging",
|
|
9196
9193
|
"optional": true,
|
|
@@ -9228,7 +9225,7 @@
|
|
|
9228
9225
|
"immutable": true,
|
|
9229
9226
|
"locationInModule": {
|
|
9230
9227
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9231
|
-
"line":
|
|
9228
|
+
"line": 795
|
|
9232
9229
|
},
|
|
9233
9230
|
"name": "maxNodeVersion",
|
|
9234
9231
|
"optional": true,
|
|
@@ -9266,7 +9263,7 @@
|
|
|
9266
9263
|
"immutable": true,
|
|
9267
9264
|
"locationInModule": {
|
|
9268
9265
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9269
|
-
"line":
|
|
9266
|
+
"line": 784
|
|
9270
9267
|
},
|
|
9271
9268
|
"name": "minNodeVersion",
|
|
9272
9269
|
"optional": true,
|
|
@@ -9284,7 +9281,7 @@
|
|
|
9284
9281
|
"immutable": true,
|
|
9285
9282
|
"locationInModule": {
|
|
9286
9283
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9287
|
-
"line":
|
|
9284
|
+
"line": 1201
|
|
9288
9285
|
},
|
|
9289
9286
|
"name": "mise",
|
|
9290
9287
|
"optional": true,
|
|
@@ -9302,7 +9299,7 @@
|
|
|
9302
9299
|
"immutable": true,
|
|
9303
9300
|
"locationInModule": {
|
|
9304
9301
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9305
|
-
"line":
|
|
9302
|
+
"line": 1206
|
|
9306
9303
|
},
|
|
9307
9304
|
"name": "miseOptions",
|
|
9308
9305
|
"optional": true,
|
|
@@ -9339,7 +9336,7 @@
|
|
|
9339
9336
|
"immutable": true,
|
|
9340
9337
|
"locationInModule": {
|
|
9341
9338
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9342
|
-
"line":
|
|
9339
|
+
"line": 769
|
|
9343
9340
|
},
|
|
9344
9341
|
"name": "npmAccess",
|
|
9345
9342
|
"optional": true,
|
|
@@ -9412,7 +9409,7 @@
|
|
|
9412
9409
|
"immutable": true,
|
|
9413
9410
|
"locationInModule": {
|
|
9414
9411
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9415
|
-
"line":
|
|
9412
|
+
"line": 761
|
|
9416
9413
|
},
|
|
9417
9414
|
"name": "npmProvenance",
|
|
9418
9415
|
"optional": true,
|
|
@@ -9431,7 +9428,7 @@
|
|
|
9431
9428
|
"immutable": true,
|
|
9432
9429
|
"locationInModule": {
|
|
9433
9430
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9434
|
-
"line":
|
|
9431
|
+
"line": 750
|
|
9435
9432
|
},
|
|
9436
9433
|
"name": "npmRegistryUrl",
|
|
9437
9434
|
"optional": true,
|
|
@@ -9449,7 +9446,7 @@
|
|
|
9449
9446
|
"immutable": true,
|
|
9450
9447
|
"locationInModule": {
|
|
9451
9448
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9452
|
-
"line":
|
|
9449
|
+
"line": 743
|
|
9453
9450
|
},
|
|
9454
9451
|
"name": "npmTokenSecret",
|
|
9455
9452
|
"optional": true,
|
|
@@ -9467,7 +9464,7 @@
|
|
|
9467
9464
|
"immutable": true,
|
|
9468
9465
|
"locationInModule": {
|
|
9469
9466
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9470
|
-
"line":
|
|
9467
|
+
"line": 737
|
|
9471
9468
|
},
|
|
9472
9469
|
"name": "npmTrustedPublishing",
|
|
9473
9470
|
"optional": true,
|
|
@@ -9486,7 +9483,7 @@
|
|
|
9486
9483
|
"immutable": true,
|
|
9487
9484
|
"locationInModule": {
|
|
9488
9485
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9489
|
-
"line":
|
|
9486
|
+
"line": 1157
|
|
9490
9487
|
},
|
|
9491
9488
|
"name": "outdir",
|
|
9492
9489
|
"optional": true,
|
|
@@ -9515,17 +9512,14 @@
|
|
|
9515
9512
|
{
|
|
9516
9513
|
"abstract": true,
|
|
9517
9514
|
"docs": {
|
|
9518
|
-
"
|
|
9519
|
-
"pjnew": "$PACKAGE_MANAGER"
|
|
9520
|
-
},
|
|
9521
|
-
"default": "- Detected from the calling process or `YARN_CLASSIC` if detection fails.",
|
|
9515
|
+
"default": "- pnpm",
|
|
9522
9516
|
"stability": "experimental",
|
|
9523
9517
|
"summary": "The Node Package Manager used to execute scripts."
|
|
9524
9518
|
},
|
|
9525
9519
|
"immutable": true,
|
|
9526
9520
|
"locationInModule": {
|
|
9527
9521
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9528
|
-
"line":
|
|
9522
|
+
"line": 731
|
|
9529
9523
|
},
|
|
9530
9524
|
"name": "packageManager",
|
|
9531
9525
|
"optional": true,
|
|
@@ -9563,7 +9557,7 @@
|
|
|
9563
9557
|
"immutable": true,
|
|
9564
9558
|
"locationInModule": {
|
|
9565
9559
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9566
|
-
"line":
|
|
9560
|
+
"line": 1146
|
|
9567
9561
|
},
|
|
9568
9562
|
"name": "parent",
|
|
9569
9563
|
"optional": true,
|
|
@@ -9699,7 +9693,7 @@
|
|
|
9699
9693
|
"immutable": true,
|
|
9700
9694
|
"locationInModule": {
|
|
9701
9695
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9702
|
-
"line":
|
|
9696
|
+
"line": 1141
|
|
9703
9697
|
},
|
|
9704
9698
|
"name": "projectTree",
|
|
9705
9699
|
"optional": true,
|
|
@@ -9718,7 +9712,7 @@
|
|
|
9718
9712
|
"immutable": true,
|
|
9719
9713
|
"locationInModule": {
|
|
9720
9714
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9721
|
-
"line":
|
|
9715
|
+
"line": 1135
|
|
9722
9716
|
},
|
|
9723
9717
|
"name": "projenCommand",
|
|
9724
9718
|
"optional": true,
|
|
@@ -9736,7 +9730,7 @@
|
|
|
9736
9730
|
"immutable": true,
|
|
9737
9731
|
"locationInModule": {
|
|
9738
9732
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9739
|
-
"line":
|
|
9733
|
+
"line": 1051
|
|
9740
9734
|
},
|
|
9741
9735
|
"name": "projenCredentials",
|
|
9742
9736
|
"optional": true,
|
|
@@ -9790,7 +9784,7 @@
|
|
|
9790
9784
|
"immutable": true,
|
|
9791
9785
|
"locationInModule": {
|
|
9792
9786
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9793
|
-
"line":
|
|
9787
|
+
"line": 1128
|
|
9794
9788
|
},
|
|
9795
9789
|
"name": "projenrcJson",
|
|
9796
9790
|
"optional": true,
|
|
@@ -9808,7 +9802,7 @@
|
|
|
9808
9802
|
"immutable": true,
|
|
9809
9803
|
"locationInModule": {
|
|
9810
9804
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9811
|
-
"line":
|
|
9805
|
+
"line": 1122
|
|
9812
9806
|
},
|
|
9813
9807
|
"name": "projenrcJsonOptions",
|
|
9814
9808
|
"optional": true,
|
|
@@ -9978,7 +9972,7 @@
|
|
|
9978
9972
|
"immutable": true,
|
|
9979
9973
|
"locationInModule": {
|
|
9980
9974
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
9981
|
-
"line":
|
|
9975
|
+
"line": 1045
|
|
9982
9976
|
},
|
|
9983
9977
|
"name": "readme",
|
|
9984
9978
|
"optional": true,
|
|
@@ -10230,7 +10224,7 @@
|
|
|
10230
10224
|
"immutable": true,
|
|
10231
10225
|
"locationInModule": {
|
|
10232
10226
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
10233
|
-
"line":
|
|
10227
|
+
"line": 1116
|
|
10234
10228
|
},
|
|
10235
10229
|
"name": "renovatebot",
|
|
10236
10230
|
"optional": true,
|
|
@@ -10248,7 +10242,7 @@
|
|
|
10248
10242
|
"immutable": true,
|
|
10249
10243
|
"locationInModule": {
|
|
10250
10244
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
10251
|
-
"line":
|
|
10245
|
+
"line": 1110
|
|
10252
10246
|
},
|
|
10253
10247
|
"name": "renovatebotOptions",
|
|
10254
10248
|
"optional": true,
|
|
@@ -10415,7 +10409,7 @@
|
|
|
10415
10409
|
"immutable": true,
|
|
10416
10410
|
"locationInModule": {
|
|
10417
10411
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
10418
|
-
"line":
|
|
10412
|
+
"line": 1039
|
|
10419
10413
|
},
|
|
10420
10414
|
"name": "stale",
|
|
10421
10415
|
"optional": true,
|
|
@@ -10434,7 +10428,7 @@
|
|
|
10434
10428
|
"immutable": true,
|
|
10435
10429
|
"locationInModule": {
|
|
10436
10430
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
10437
|
-
"line":
|
|
10431
|
+
"line": 1032
|
|
10438
10432
|
},
|
|
10439
10433
|
"name": "staleOptions",
|
|
10440
10434
|
"optional": true,
|
|
@@ -10569,7 +10563,7 @@
|
|
|
10569
10563
|
"immutable": true,
|
|
10570
10564
|
"locationInModule": {
|
|
10571
10565
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
10572
|
-
"line":
|
|
10566
|
+
"line": 1211
|
|
10573
10567
|
},
|
|
10574
10568
|
"name": "vitest",
|
|
10575
10569
|
"optional": true,
|
|
@@ -10587,7 +10581,7 @@
|
|
|
10587
10581
|
"immutable": true,
|
|
10588
10582
|
"locationInModule": {
|
|
10589
10583
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
10590
|
-
"line":
|
|
10584
|
+
"line": 1216
|
|
10591
10585
|
},
|
|
10592
10586
|
"name": "vitestOptions",
|
|
10593
10587
|
"optional": true,
|
|
@@ -10606,7 +10600,7 @@
|
|
|
10606
10600
|
"immutable": true,
|
|
10607
10601
|
"locationInModule": {
|
|
10608
10602
|
"filename": "src/projects/awscdk-typescript-app-options.generated.ts",
|
|
10609
|
-
"line":
|
|
10603
|
+
"line": 1025
|
|
10610
10604
|
},
|
|
10611
10605
|
"name": "vscode",
|
|
10612
10606
|
"optional": true,
|
|
@@ -11941,7 +11935,7 @@
|
|
|
11941
11935
|
"immutable": true,
|
|
11942
11936
|
"locationInModule": {
|
|
11943
11937
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
11944
|
-
"line":
|
|
11938
|
+
"line": 1159
|
|
11945
11939
|
},
|
|
11946
11940
|
"name": "name",
|
|
11947
11941
|
"type": {
|
|
@@ -11975,7 +11969,7 @@
|
|
|
11975
11969
|
"immutable": true,
|
|
11976
11970
|
"locationInModule": {
|
|
11977
11971
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
11978
|
-
"line":
|
|
11972
|
+
"line": 991
|
|
11979
11973
|
},
|
|
11980
11974
|
"name": "addPackageManagerToDevEngines",
|
|
11981
11975
|
"optional": true,
|
|
@@ -11994,7 +11988,7 @@
|
|
|
11994
11988
|
"immutable": true,
|
|
11995
11989
|
"locationInModule": {
|
|
11996
11990
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
11997
|
-
"line":
|
|
11991
|
+
"line": 985
|
|
11998
11992
|
},
|
|
11999
11993
|
"name": "allowLibraryDependencies",
|
|
12000
11994
|
"optional": true,
|
|
@@ -12013,7 +12007,7 @@
|
|
|
12013
12007
|
"immutable": true,
|
|
12014
12008
|
"locationInModule": {
|
|
12015
12009
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12016
|
-
"line":
|
|
12010
|
+
"line": 977
|
|
12017
12011
|
},
|
|
12018
12012
|
"name": "allowScripts",
|
|
12019
12013
|
"optional": true,
|
|
@@ -12090,7 +12084,7 @@
|
|
|
12090
12084
|
"immutable": true,
|
|
12091
12085
|
"locationInModule": {
|
|
12092
12086
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12093
|
-
"line":
|
|
12087
|
+
"line": 947
|
|
12094
12088
|
},
|
|
12095
12089
|
"name": "authorEmail",
|
|
12096
12090
|
"optional": true,
|
|
@@ -12107,7 +12101,7 @@
|
|
|
12107
12101
|
"immutable": true,
|
|
12108
12102
|
"locationInModule": {
|
|
12109
12103
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12110
|
-
"line":
|
|
12104
|
+
"line": 942
|
|
12111
12105
|
},
|
|
12112
12106
|
"name": "authorName",
|
|
12113
12107
|
"optional": true,
|
|
@@ -12124,7 +12118,7 @@
|
|
|
12124
12118
|
"immutable": true,
|
|
12125
12119
|
"locationInModule": {
|
|
12126
12120
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12127
|
-
"line":
|
|
12121
|
+
"line": 937
|
|
12128
12122
|
},
|
|
12129
12123
|
"name": "authorOrganization",
|
|
12130
12124
|
"optional": true,
|
|
@@ -12141,7 +12135,7 @@
|
|
|
12141
12135
|
"immutable": true,
|
|
12142
12136
|
"locationInModule": {
|
|
12143
12137
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12144
|
-
"line":
|
|
12138
|
+
"line": 932
|
|
12145
12139
|
},
|
|
12146
12140
|
"name": "authorUrl",
|
|
12147
12141
|
"optional": true,
|
|
@@ -12159,7 +12153,7 @@
|
|
|
12159
12153
|
"immutable": true,
|
|
12160
12154
|
"locationInModule": {
|
|
12161
12155
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12162
|
-
"line":
|
|
12156
|
+
"line": 1077
|
|
12163
12157
|
},
|
|
12164
12158
|
"name": "autoApproveOptions",
|
|
12165
12159
|
"optional": true,
|
|
@@ -12196,7 +12190,7 @@
|
|
|
12196
12190
|
"immutable": true,
|
|
12197
12191
|
"locationInModule": {
|
|
12198
12192
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12199
|
-
"line":
|
|
12193
|
+
"line": 927
|
|
12200
12194
|
},
|
|
12201
12195
|
"name": "autoDetectBin",
|
|
12202
12196
|
"optional": true,
|
|
@@ -12215,7 +12209,7 @@
|
|
|
12215
12209
|
"immutable": true,
|
|
12216
12210
|
"locationInModule": {
|
|
12217
12211
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12218
|
-
"line":
|
|
12212
|
+
"line": 1071
|
|
12219
12213
|
},
|
|
12220
12214
|
"name": "autoMerge",
|
|
12221
12215
|
"optional": true,
|
|
@@ -12234,7 +12228,7 @@
|
|
|
12234
12228
|
"immutable": true,
|
|
12235
12229
|
"locationInModule": {
|
|
12236
12230
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12237
|
-
"line":
|
|
12231
|
+
"line": 1063
|
|
12238
12232
|
},
|
|
12239
12233
|
"name": "autoMergeOptions",
|
|
12240
12234
|
"optional": true,
|
|
@@ -12252,7 +12246,7 @@
|
|
|
12252
12246
|
"immutable": true,
|
|
12253
12247
|
"locationInModule": {
|
|
12254
12248
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12255
|
-
"line":
|
|
12249
|
+
"line": 921
|
|
12256
12250
|
},
|
|
12257
12251
|
"name": "bin",
|
|
12258
12252
|
"optional": true,
|
|
@@ -12310,7 +12304,7 @@
|
|
|
12310
12304
|
"immutable": true,
|
|
12311
12305
|
"locationInModule": {
|
|
12312
12306
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12313
|
-
"line":
|
|
12307
|
+
"line": 913
|
|
12314
12308
|
},
|
|
12315
12309
|
"name": "bugsEmail",
|
|
12316
12310
|
"optional": true,
|
|
@@ -12327,7 +12321,7 @@
|
|
|
12327
12321
|
"immutable": true,
|
|
12328
12322
|
"locationInModule": {
|
|
12329
12323
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12330
|
-
"line":
|
|
12324
|
+
"line": 908
|
|
12331
12325
|
},
|
|
12332
12326
|
"name": "bugsUrl",
|
|
12333
12327
|
"optional": true,
|
|
@@ -12399,7 +12393,7 @@
|
|
|
12399
12393
|
"immutable": true,
|
|
12400
12394
|
"locationInModule": {
|
|
12401
12395
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12402
|
-
"line":
|
|
12396
|
+
"line": 903
|
|
12403
12397
|
},
|
|
12404
12398
|
"name": "bundledDeps",
|
|
12405
12399
|
"optional": true,
|
|
@@ -12439,7 +12433,7 @@
|
|
|
12439
12433
|
"immutable": true,
|
|
12440
12434
|
"locationInModule": {
|
|
12441
12435
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12442
|
-
"line":
|
|
12436
|
+
"line": 888
|
|
12443
12437
|
},
|
|
12444
12438
|
"name": "bunVersion",
|
|
12445
12439
|
"optional": true,
|
|
@@ -12476,7 +12470,7 @@
|
|
|
12476
12470
|
"immutable": true,
|
|
12477
12471
|
"locationInModule": {
|
|
12478
12472
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12479
|
-
"line":
|
|
12473
|
+
"line": 1055
|
|
12480
12474
|
},
|
|
12481
12475
|
"name": "clobber",
|
|
12482
12476
|
"optional": true,
|
|
@@ -12495,7 +12489,7 @@
|
|
|
12495
12489
|
"immutable": true,
|
|
12496
12490
|
"locationInModule": {
|
|
12497
12491
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12498
|
-
"line":
|
|
12492
|
+
"line": 882
|
|
12499
12493
|
},
|
|
12500
12494
|
"name": "codeArtifactOptions",
|
|
12501
12495
|
"optional": true,
|
|
@@ -12549,7 +12543,7 @@
|
|
|
12549
12543
|
"immutable": true,
|
|
12550
12544
|
"locationInModule": {
|
|
12551
12545
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12552
|
-
"line":
|
|
12546
|
+
"line": 1152
|
|
12553
12547
|
},
|
|
12554
12548
|
"name": "commitGenerated",
|
|
12555
12549
|
"optional": true,
|
|
@@ -12661,7 +12655,7 @@
|
|
|
12661
12655
|
"immutable": true,
|
|
12662
12656
|
"locationInModule": {
|
|
12663
12657
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12664
|
-
"line":
|
|
12658
|
+
"line": 875
|
|
12665
12659
|
},
|
|
12666
12660
|
"name": "dedupeDeps",
|
|
12667
12661
|
"optional": true,
|
|
@@ -12701,7 +12695,7 @@
|
|
|
12701
12695
|
"immutable": true,
|
|
12702
12696
|
"locationInModule": {
|
|
12703
12697
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12704
|
-
"line":
|
|
12698
|
+
"line": 855
|
|
12705
12699
|
},
|
|
12706
12700
|
"name": "deleteOrphanedLockFiles",
|
|
12707
12701
|
"optional": true,
|
|
@@ -12760,7 +12754,7 @@
|
|
|
12760
12754
|
"immutable": true,
|
|
12761
12755
|
"locationInModule": {
|
|
12762
12756
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12763
|
-
"line":
|
|
12757
|
+
"line": 845
|
|
12764
12758
|
},
|
|
12765
12759
|
"name": "deps",
|
|
12766
12760
|
"optional": true,
|
|
@@ -12823,7 +12817,7 @@
|
|
|
12823
12817
|
"immutable": true,
|
|
12824
12818
|
"locationInModule": {
|
|
12825
12819
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12826
|
-
"line":
|
|
12820
|
+
"line": 832
|
|
12827
12821
|
},
|
|
12828
12822
|
"name": "description",
|
|
12829
12823
|
"optional": true,
|
|
@@ -12841,7 +12835,7 @@
|
|
|
12841
12835
|
"immutable": true,
|
|
12842
12836
|
"locationInModule": {
|
|
12843
12837
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12844
|
-
"line":
|
|
12838
|
+
"line": 1049
|
|
12845
12839
|
},
|
|
12846
12840
|
"name": "devContainer",
|
|
12847
12841
|
"optional": true,
|
|
@@ -12863,7 +12857,7 @@
|
|
|
12863
12857
|
"immutable": true,
|
|
12864
12858
|
"locationInModule": {
|
|
12865
12859
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12866
|
-
"line":
|
|
12860
|
+
"line": 824
|
|
12867
12861
|
},
|
|
12868
12862
|
"name": "devDeps",
|
|
12869
12863
|
"optional": true,
|
|
@@ -12885,7 +12879,7 @@
|
|
|
12885
12879
|
"immutable": true,
|
|
12886
12880
|
"locationInModule": {
|
|
12887
12881
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12888
|
-
"line":
|
|
12882
|
+
"line": 807
|
|
12889
12883
|
},
|
|
12890
12884
|
"name": "devEngines",
|
|
12891
12885
|
"optional": true,
|
|
@@ -12993,7 +12987,7 @@
|
|
|
12993
12987
|
"immutable": true,
|
|
12994
12988
|
"locationInModule": {
|
|
12995
12989
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
12996
|
-
"line":
|
|
12990
|
+
"line": 799
|
|
12997
12991
|
},
|
|
12998
12992
|
"name": "entrypoint",
|
|
12999
12993
|
"optional": true,
|
|
@@ -13053,7 +13047,7 @@
|
|
|
13053
13047
|
"immutable": true,
|
|
13054
13048
|
"locationInModule": {
|
|
13055
13049
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13056
|
-
"line":
|
|
13050
|
+
"line": 1043
|
|
13057
13051
|
},
|
|
13058
13052
|
"name": "github",
|
|
13059
13053
|
"optional": true,
|
|
@@ -13071,7 +13065,7 @@
|
|
|
13071
13065
|
"immutable": true,
|
|
13072
13066
|
"locationInModule": {
|
|
13073
13067
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13074
|
-
"line":
|
|
13068
|
+
"line": 1036
|
|
13075
13069
|
},
|
|
13076
13070
|
"name": "githubOptions",
|
|
13077
13071
|
"optional": true,
|
|
@@ -13110,7 +13104,7 @@
|
|
|
13110
13104
|
"immutable": true,
|
|
13111
13105
|
"locationInModule": {
|
|
13112
13106
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13113
|
-
"line":
|
|
13107
|
+
"line": 1146
|
|
13114
13108
|
},
|
|
13115
13109
|
"name": "gitIgnoreOptions",
|
|
13116
13110
|
"optional": true,
|
|
@@ -13127,7 +13121,7 @@
|
|
|
13127
13121
|
"immutable": true,
|
|
13128
13122
|
"locationInModule": {
|
|
13129
13123
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13130
|
-
"line":
|
|
13124
|
+
"line": 1141
|
|
13131
13125
|
},
|
|
13132
13126
|
"name": "gitOptions",
|
|
13133
13127
|
"optional": true,
|
|
@@ -13145,7 +13139,7 @@
|
|
|
13145
13139
|
"immutable": true,
|
|
13146
13140
|
"locationInModule": {
|
|
13147
13141
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13148
|
-
"line":
|
|
13142
|
+
"line": 1030
|
|
13149
13143
|
},
|
|
13150
13144
|
"name": "gitpod",
|
|
13151
13145
|
"optional": true,
|
|
@@ -13163,7 +13157,7 @@
|
|
|
13163
13157
|
"immutable": true,
|
|
13164
13158
|
"locationInModule": {
|
|
13165
13159
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13166
|
-
"line":
|
|
13160
|
+
"line": 1164
|
|
13167
13161
|
},
|
|
13168
13162
|
"name": "homebrew",
|
|
13169
13163
|
"optional": true,
|
|
@@ -13181,7 +13175,7 @@
|
|
|
13181
13175
|
"immutable": true,
|
|
13182
13176
|
"locationInModule": {
|
|
13183
13177
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13184
|
-
"line":
|
|
13178
|
+
"line": 1169
|
|
13185
13179
|
},
|
|
13186
13180
|
"name": "homebrewOptions",
|
|
13187
13181
|
"optional": true,
|
|
@@ -13198,7 +13192,7 @@
|
|
|
13198
13192
|
"immutable": true,
|
|
13199
13193
|
"locationInModule": {
|
|
13200
13194
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13201
|
-
"line":
|
|
13195
|
+
"line": 792
|
|
13202
13196
|
},
|
|
13203
13197
|
"name": "homepage",
|
|
13204
13198
|
"optional": true,
|
|
@@ -13255,7 +13249,7 @@
|
|
|
13255
13249
|
"immutable": true,
|
|
13256
13250
|
"locationInModule": {
|
|
13257
13251
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13258
|
-
"line":
|
|
13252
|
+
"line": 787
|
|
13259
13253
|
},
|
|
13260
13254
|
"name": "keywords",
|
|
13261
13255
|
"optional": true,
|
|
@@ -13297,7 +13291,7 @@
|
|
|
13297
13291
|
"immutable": true,
|
|
13298
13292
|
"locationInModule": {
|
|
13299
13293
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13300
|
-
"line":
|
|
13294
|
+
"line": 782
|
|
13301
13295
|
},
|
|
13302
13296
|
"name": "license",
|
|
13303
13297
|
"optional": true,
|
|
@@ -13315,7 +13309,7 @@
|
|
|
13315
13309
|
"immutable": true,
|
|
13316
13310
|
"locationInModule": {
|
|
13317
13311
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13318
|
-
"line":
|
|
13312
|
+
"line": 774
|
|
13319
13313
|
},
|
|
13320
13314
|
"name": "licensed",
|
|
13321
13315
|
"optional": true,
|
|
@@ -13333,7 +13327,7 @@
|
|
|
13333
13327
|
"immutable": true,
|
|
13334
13328
|
"locationInModule": {
|
|
13335
13329
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13336
|
-
"line":
|
|
13330
|
+
"line": 1136
|
|
13337
13331
|
},
|
|
13338
13332
|
"name": "logging",
|
|
13339
13333
|
"optional": true,
|
|
@@ -13371,7 +13365,7 @@
|
|
|
13371
13365
|
"immutable": true,
|
|
13372
13366
|
"locationInModule": {
|
|
13373
13367
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13374
|
-
"line":
|
|
13368
|
+
"line": 768
|
|
13375
13369
|
},
|
|
13376
13370
|
"name": "maxNodeVersion",
|
|
13377
13371
|
"optional": true,
|
|
@@ -13409,7 +13403,7 @@
|
|
|
13409
13403
|
"immutable": true,
|
|
13410
13404
|
"locationInModule": {
|
|
13411
13405
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13412
|
-
"line":
|
|
13406
|
+
"line": 757
|
|
13413
13407
|
},
|
|
13414
13408
|
"name": "minNodeVersion",
|
|
13415
13409
|
"optional": true,
|
|
@@ -13427,7 +13421,7 @@
|
|
|
13427
13421
|
"immutable": true,
|
|
13428
13422
|
"locationInModule": {
|
|
13429
13423
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13430
|
-
"line":
|
|
13424
|
+
"line": 1174
|
|
13431
13425
|
},
|
|
13432
13426
|
"name": "mise",
|
|
13433
13427
|
"optional": true,
|
|
@@ -13445,7 +13439,7 @@
|
|
|
13445
13439
|
"immutable": true,
|
|
13446
13440
|
"locationInModule": {
|
|
13447
13441
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13448
|
-
"line":
|
|
13442
|
+
"line": 1179
|
|
13449
13443
|
},
|
|
13450
13444
|
"name": "miseOptions",
|
|
13451
13445
|
"optional": true,
|
|
@@ -13482,7 +13476,7 @@
|
|
|
13482
13476
|
"immutable": true,
|
|
13483
13477
|
"locationInModule": {
|
|
13484
13478
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13485
|
-
"line":
|
|
13479
|
+
"line": 742
|
|
13486
13480
|
},
|
|
13487
13481
|
"name": "npmAccess",
|
|
13488
13482
|
"optional": true,
|
|
@@ -13555,7 +13549,7 @@
|
|
|
13555
13549
|
"immutable": true,
|
|
13556
13550
|
"locationInModule": {
|
|
13557
13551
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13558
|
-
"line":
|
|
13552
|
+
"line": 734
|
|
13559
13553
|
},
|
|
13560
13554
|
"name": "npmProvenance",
|
|
13561
13555
|
"optional": true,
|
|
@@ -13574,7 +13568,7 @@
|
|
|
13574
13568
|
"immutable": true,
|
|
13575
13569
|
"locationInModule": {
|
|
13576
13570
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13577
|
-
"line":
|
|
13571
|
+
"line": 723
|
|
13578
13572
|
},
|
|
13579
13573
|
"name": "npmRegistryUrl",
|
|
13580
13574
|
"optional": true,
|
|
@@ -13592,7 +13586,7 @@
|
|
|
13592
13586
|
"immutable": true,
|
|
13593
13587
|
"locationInModule": {
|
|
13594
13588
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13595
|
-
"line":
|
|
13589
|
+
"line": 716
|
|
13596
13590
|
},
|
|
13597
13591
|
"name": "npmTokenSecret",
|
|
13598
13592
|
"optional": true,
|
|
@@ -13610,7 +13604,7 @@
|
|
|
13610
13604
|
"immutable": true,
|
|
13611
13605
|
"locationInModule": {
|
|
13612
13606
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13613
|
-
"line":
|
|
13607
|
+
"line": 710
|
|
13614
13608
|
},
|
|
13615
13609
|
"name": "npmTrustedPublishing",
|
|
13616
13610
|
"optional": true,
|
|
@@ -13629,7 +13623,7 @@
|
|
|
13629
13623
|
"immutable": true,
|
|
13630
13624
|
"locationInModule": {
|
|
13631
13625
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13632
|
-
"line":
|
|
13626
|
+
"line": 1130
|
|
13633
13627
|
},
|
|
13634
13628
|
"name": "outdir",
|
|
13635
13629
|
"optional": true,
|
|
@@ -13658,17 +13652,14 @@
|
|
|
13658
13652
|
{
|
|
13659
13653
|
"abstract": true,
|
|
13660
13654
|
"docs": {
|
|
13661
|
-
"
|
|
13662
|
-
"pjnew": "$PACKAGE_MANAGER"
|
|
13663
|
-
},
|
|
13664
|
-
"default": "- Detected from the calling process or `YARN_CLASSIC` if detection fails.",
|
|
13655
|
+
"default": "- pnpm",
|
|
13665
13656
|
"stability": "experimental",
|
|
13666
13657
|
"summary": "The Node Package Manager used to execute scripts."
|
|
13667
13658
|
},
|
|
13668
13659
|
"immutable": true,
|
|
13669
13660
|
"locationInModule": {
|
|
13670
13661
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13671
|
-
"line":
|
|
13662
|
+
"line": 704
|
|
13672
13663
|
},
|
|
13673
13664
|
"name": "packageManager",
|
|
13674
13665
|
"optional": true,
|
|
@@ -13706,7 +13697,7 @@
|
|
|
13706
13697
|
"immutable": true,
|
|
13707
13698
|
"locationInModule": {
|
|
13708
13699
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13709
|
-
"line":
|
|
13700
|
+
"line": 1119
|
|
13710
13701
|
},
|
|
13711
13702
|
"name": "parent",
|
|
13712
13703
|
"optional": true,
|
|
@@ -13842,7 +13833,7 @@
|
|
|
13842
13833
|
"immutable": true,
|
|
13843
13834
|
"locationInModule": {
|
|
13844
13835
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13845
|
-
"line":
|
|
13836
|
+
"line": 1114
|
|
13846
13837
|
},
|
|
13847
13838
|
"name": "projectTree",
|
|
13848
13839
|
"optional": true,
|
|
@@ -13861,7 +13852,7 @@
|
|
|
13861
13852
|
"immutable": true,
|
|
13862
13853
|
"locationInModule": {
|
|
13863
13854
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13864
|
-
"line":
|
|
13855
|
+
"line": 1108
|
|
13865
13856
|
},
|
|
13866
13857
|
"name": "projenCommand",
|
|
13867
13858
|
"optional": true,
|
|
@@ -13879,7 +13870,7 @@
|
|
|
13879
13870
|
"immutable": true,
|
|
13880
13871
|
"locationInModule": {
|
|
13881
13872
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13882
|
-
"line":
|
|
13873
|
+
"line": 1024
|
|
13883
13874
|
},
|
|
13884
13875
|
"name": "projenCredentials",
|
|
13885
13876
|
"optional": true,
|
|
@@ -13933,7 +13924,7 @@
|
|
|
13933
13924
|
"immutable": true,
|
|
13934
13925
|
"locationInModule": {
|
|
13935
13926
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13936
|
-
"line":
|
|
13927
|
+
"line": 1101
|
|
13937
13928
|
},
|
|
13938
13929
|
"name": "projenrcJson",
|
|
13939
13930
|
"optional": true,
|
|
@@ -13951,7 +13942,7 @@
|
|
|
13951
13942
|
"immutable": true,
|
|
13952
13943
|
"locationInModule": {
|
|
13953
13944
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
13954
|
-
"line":
|
|
13945
|
+
"line": 1095
|
|
13955
13946
|
},
|
|
13956
13947
|
"name": "projenrcJsonOptions",
|
|
13957
13948
|
"optional": true,
|
|
@@ -14193,7 +14184,7 @@
|
|
|
14193
14184
|
"immutable": true,
|
|
14194
14185
|
"locationInModule": {
|
|
14195
14186
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14196
|
-
"line":
|
|
14187
|
+
"line": 1018
|
|
14197
14188
|
},
|
|
14198
14189
|
"name": "readme",
|
|
14199
14190
|
"optional": true,
|
|
@@ -14445,7 +14436,7 @@
|
|
|
14445
14436
|
"immutable": true,
|
|
14446
14437
|
"locationInModule": {
|
|
14447
14438
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14448
|
-
"line":
|
|
14439
|
+
"line": 1089
|
|
14449
14440
|
},
|
|
14450
14441
|
"name": "renovatebot",
|
|
14451
14442
|
"optional": true,
|
|
@@ -14463,7 +14454,7 @@
|
|
|
14463
14454
|
"immutable": true,
|
|
14464
14455
|
"locationInModule": {
|
|
14465
14456
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14466
|
-
"line":
|
|
14457
|
+
"line": 1083
|
|
14467
14458
|
},
|
|
14468
14459
|
"name": "renovatebotOptions",
|
|
14469
14460
|
"optional": true,
|
|
@@ -14611,7 +14602,7 @@
|
|
|
14611
14602
|
"immutable": true,
|
|
14612
14603
|
"locationInModule": {
|
|
14613
14604
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14614
|
-
"line":
|
|
14605
|
+
"line": 1012
|
|
14615
14606
|
},
|
|
14616
14607
|
"name": "stale",
|
|
14617
14608
|
"optional": true,
|
|
@@ -14630,7 +14621,7 @@
|
|
|
14630
14621
|
"immutable": true,
|
|
14631
14622
|
"locationInModule": {
|
|
14632
14623
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14633
|
-
"line":
|
|
14624
|
+
"line": 1005
|
|
14634
14625
|
},
|
|
14635
14626
|
"name": "staleOptions",
|
|
14636
14627
|
"optional": true,
|
|
@@ -14722,7 +14713,7 @@
|
|
|
14722
14713
|
"immutable": true,
|
|
14723
14714
|
"locationInModule": {
|
|
14724
14715
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14725
|
-
"line":
|
|
14716
|
+
"line": 1194
|
|
14726
14717
|
},
|
|
14727
14718
|
"name": "typeDoc",
|
|
14728
14719
|
"optional": true,
|
|
@@ -14740,7 +14731,7 @@
|
|
|
14740
14731
|
"immutable": true,
|
|
14741
14732
|
"locationInModule": {
|
|
14742
14733
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14743
|
-
"line":
|
|
14734
|
+
"line": 1199
|
|
14744
14735
|
},
|
|
14745
14736
|
"name": "typeDocOptions",
|
|
14746
14737
|
"optional": true,
|
|
@@ -14820,7 +14811,7 @@
|
|
|
14820
14811
|
"immutable": true,
|
|
14821
14812
|
"locationInModule": {
|
|
14822
14813
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14823
|
-
"line":
|
|
14814
|
+
"line": 1184
|
|
14824
14815
|
},
|
|
14825
14816
|
"name": "vitest",
|
|
14826
14817
|
"optional": true,
|
|
@@ -14838,7 +14829,7 @@
|
|
|
14838
14829
|
"immutable": true,
|
|
14839
14830
|
"locationInModule": {
|
|
14840
14831
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14841
|
-
"line":
|
|
14832
|
+
"line": 1189
|
|
14842
14833
|
},
|
|
14843
14834
|
"name": "vitestOptions",
|
|
14844
14835
|
"optional": true,
|
|
@@ -14857,7 +14848,7 @@
|
|
|
14857
14848
|
"immutable": true,
|
|
14858
14849
|
"locationInModule": {
|
|
14859
14850
|
"filename": "src/projects/jsii-options.generated.ts",
|
|
14860
|
-
"line":
|
|
14851
|
+
"line": 998
|
|
14861
14852
|
},
|
|
14862
14853
|
"name": "vscode",
|
|
14863
14854
|
"optional": true,
|
|
@@ -15930,7 +15921,7 @@
|
|
|
15930
15921
|
},
|
|
15931
15922
|
"locationInModule": {
|
|
15932
15923
|
"filename": "src/project-generator.ts",
|
|
15933
|
-
"line":
|
|
15924
|
+
"line": 737
|
|
15934
15925
|
},
|
|
15935
15926
|
"name": "preSynthesize",
|
|
15936
15927
|
"overrides": "projen.Component"
|
|
@@ -17329,7 +17320,7 @@
|
|
|
17329
17320
|
"immutable": true,
|
|
17330
17321
|
"locationInModule": {
|
|
17331
17322
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17332
|
-
"line":
|
|
17323
|
+
"line": 1055
|
|
17333
17324
|
},
|
|
17334
17325
|
"name": "name",
|
|
17335
17326
|
"type": {
|
|
@@ -17346,7 +17337,7 @@
|
|
|
17346
17337
|
"immutable": true,
|
|
17347
17338
|
"locationInModule": {
|
|
17348
17339
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17349
|
-
"line":
|
|
17340
|
+
"line": 887
|
|
17350
17341
|
},
|
|
17351
17342
|
"name": "addPackageManagerToDevEngines",
|
|
17352
17343
|
"optional": true,
|
|
@@ -17365,7 +17356,7 @@
|
|
|
17365
17356
|
"immutable": true,
|
|
17366
17357
|
"locationInModule": {
|
|
17367
17358
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17368
|
-
"line":
|
|
17359
|
+
"line": 881
|
|
17369
17360
|
},
|
|
17370
17361
|
"name": "allowLibraryDependencies",
|
|
17371
17362
|
"optional": true,
|
|
@@ -17384,7 +17375,7 @@
|
|
|
17384
17375
|
"immutable": true,
|
|
17385
17376
|
"locationInModule": {
|
|
17386
17377
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17387
|
-
"line":
|
|
17378
|
+
"line": 873
|
|
17388
17379
|
},
|
|
17389
17380
|
"name": "allowScripts",
|
|
17390
17381
|
"optional": true,
|
|
@@ -17461,7 +17452,7 @@
|
|
|
17461
17452
|
"immutable": true,
|
|
17462
17453
|
"locationInModule": {
|
|
17463
17454
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17464
|
-
"line":
|
|
17455
|
+
"line": 843
|
|
17465
17456
|
},
|
|
17466
17457
|
"name": "authorEmail",
|
|
17467
17458
|
"optional": true,
|
|
@@ -17478,7 +17469,7 @@
|
|
|
17478
17469
|
"immutable": true,
|
|
17479
17470
|
"locationInModule": {
|
|
17480
17471
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17481
|
-
"line":
|
|
17472
|
+
"line": 838
|
|
17482
17473
|
},
|
|
17483
17474
|
"name": "authorName",
|
|
17484
17475
|
"optional": true,
|
|
@@ -17495,7 +17486,7 @@
|
|
|
17495
17486
|
"immutable": true,
|
|
17496
17487
|
"locationInModule": {
|
|
17497
17488
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17498
|
-
"line":
|
|
17489
|
+
"line": 833
|
|
17499
17490
|
},
|
|
17500
17491
|
"name": "authorOrganization",
|
|
17501
17492
|
"optional": true,
|
|
@@ -17512,7 +17503,7 @@
|
|
|
17512
17503
|
"immutable": true,
|
|
17513
17504
|
"locationInModule": {
|
|
17514
17505
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17515
|
-
"line":
|
|
17506
|
+
"line": 828
|
|
17516
17507
|
},
|
|
17517
17508
|
"name": "authorUrl",
|
|
17518
17509
|
"optional": true,
|
|
@@ -17530,7 +17521,7 @@
|
|
|
17530
17521
|
"immutable": true,
|
|
17531
17522
|
"locationInModule": {
|
|
17532
17523
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17533
|
-
"line":
|
|
17524
|
+
"line": 973
|
|
17534
17525
|
},
|
|
17535
17526
|
"name": "autoApproveOptions",
|
|
17536
17527
|
"optional": true,
|
|
@@ -17567,7 +17558,7 @@
|
|
|
17567
17558
|
"immutable": true,
|
|
17568
17559
|
"locationInModule": {
|
|
17569
17560
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17570
|
-
"line":
|
|
17561
|
+
"line": 823
|
|
17571
17562
|
},
|
|
17572
17563
|
"name": "autoDetectBin",
|
|
17573
17564
|
"optional": true,
|
|
@@ -17586,7 +17577,7 @@
|
|
|
17586
17577
|
"immutable": true,
|
|
17587
17578
|
"locationInModule": {
|
|
17588
17579
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17589
|
-
"line":
|
|
17580
|
+
"line": 967
|
|
17590
17581
|
},
|
|
17591
17582
|
"name": "autoMerge",
|
|
17592
17583
|
"optional": true,
|
|
@@ -17605,7 +17596,7 @@
|
|
|
17605
17596
|
"immutable": true,
|
|
17606
17597
|
"locationInModule": {
|
|
17607
17598
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17608
|
-
"line":
|
|
17599
|
+
"line": 959
|
|
17609
17600
|
},
|
|
17610
17601
|
"name": "autoMergeOptions",
|
|
17611
17602
|
"optional": true,
|
|
@@ -17623,7 +17614,7 @@
|
|
|
17623
17614
|
"immutable": true,
|
|
17624
17615
|
"locationInModule": {
|
|
17625
17616
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17626
|
-
"line":
|
|
17617
|
+
"line": 817
|
|
17627
17618
|
},
|
|
17628
17619
|
"name": "bin",
|
|
17629
17620
|
"optional": true,
|
|
@@ -17681,7 +17672,7 @@
|
|
|
17681
17672
|
"immutable": true,
|
|
17682
17673
|
"locationInModule": {
|
|
17683
17674
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17684
|
-
"line":
|
|
17675
|
+
"line": 809
|
|
17685
17676
|
},
|
|
17686
17677
|
"name": "bugsEmail",
|
|
17687
17678
|
"optional": true,
|
|
@@ -17698,7 +17689,7 @@
|
|
|
17698
17689
|
"immutable": true,
|
|
17699
17690
|
"locationInModule": {
|
|
17700
17691
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17701
|
-
"line":
|
|
17692
|
+
"line": 804
|
|
17702
17693
|
},
|
|
17703
17694
|
"name": "bugsUrl",
|
|
17704
17695
|
"optional": true,
|
|
@@ -17770,7 +17761,7 @@
|
|
|
17770
17761
|
"immutable": true,
|
|
17771
17762
|
"locationInModule": {
|
|
17772
17763
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17773
|
-
"line":
|
|
17764
|
+
"line": 799
|
|
17774
17765
|
},
|
|
17775
17766
|
"name": "bundledDeps",
|
|
17776
17767
|
"optional": true,
|
|
@@ -17810,7 +17801,7 @@
|
|
|
17810
17801
|
"immutable": true,
|
|
17811
17802
|
"locationInModule": {
|
|
17812
17803
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17813
|
-
"line":
|
|
17804
|
+
"line": 784
|
|
17814
17805
|
},
|
|
17815
17806
|
"name": "bunVersion",
|
|
17816
17807
|
"optional": true,
|
|
@@ -17847,7 +17838,7 @@
|
|
|
17847
17838
|
"immutable": true,
|
|
17848
17839
|
"locationInModule": {
|
|
17849
17840
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17850
|
-
"line":
|
|
17841
|
+
"line": 951
|
|
17851
17842
|
},
|
|
17852
17843
|
"name": "clobber",
|
|
17853
17844
|
"optional": true,
|
|
@@ -17866,7 +17857,7 @@
|
|
|
17866
17857
|
"immutable": true,
|
|
17867
17858
|
"locationInModule": {
|
|
17868
17859
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17869
|
-
"line":
|
|
17860
|
+
"line": 778
|
|
17870
17861
|
},
|
|
17871
17862
|
"name": "codeArtifactOptions",
|
|
17872
17863
|
"optional": true,
|
|
@@ -17920,7 +17911,7 @@
|
|
|
17920
17911
|
"immutable": true,
|
|
17921
17912
|
"locationInModule": {
|
|
17922
17913
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17923
|
-
"line":
|
|
17914
|
+
"line": 1048
|
|
17924
17915
|
},
|
|
17925
17916
|
"name": "commitGenerated",
|
|
17926
17917
|
"optional": true,
|
|
@@ -17977,7 +17968,7 @@
|
|
|
17977
17968
|
"immutable": true,
|
|
17978
17969
|
"locationInModule": {
|
|
17979
17970
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
17980
|
-
"line":
|
|
17971
|
+
"line": 771
|
|
17981
17972
|
},
|
|
17982
17973
|
"name": "dedupeDeps",
|
|
17983
17974
|
"optional": true,
|
|
@@ -18017,7 +18008,7 @@
|
|
|
18017
18008
|
"immutable": true,
|
|
18018
18009
|
"locationInModule": {
|
|
18019
18010
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18020
|
-
"line":
|
|
18011
|
+
"line": 751
|
|
18021
18012
|
},
|
|
18022
18013
|
"name": "deleteOrphanedLockFiles",
|
|
18023
18014
|
"optional": true,
|
|
@@ -18076,7 +18067,7 @@
|
|
|
18076
18067
|
"immutable": true,
|
|
18077
18068
|
"locationInModule": {
|
|
18078
18069
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18079
|
-
"line":
|
|
18070
|
+
"line": 741
|
|
18080
18071
|
},
|
|
18081
18072
|
"name": "deps",
|
|
18082
18073
|
"optional": true,
|
|
@@ -18139,7 +18130,7 @@
|
|
|
18139
18130
|
"immutable": true,
|
|
18140
18131
|
"locationInModule": {
|
|
18141
18132
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18142
|
-
"line":
|
|
18133
|
+
"line": 728
|
|
18143
18134
|
},
|
|
18144
18135
|
"name": "description",
|
|
18145
18136
|
"optional": true,
|
|
@@ -18157,7 +18148,7 @@
|
|
|
18157
18148
|
"immutable": true,
|
|
18158
18149
|
"locationInModule": {
|
|
18159
18150
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18160
|
-
"line":
|
|
18151
|
+
"line": 945
|
|
18161
18152
|
},
|
|
18162
18153
|
"name": "devContainer",
|
|
18163
18154
|
"optional": true,
|
|
@@ -18179,7 +18170,7 @@
|
|
|
18179
18170
|
"immutable": true,
|
|
18180
18171
|
"locationInModule": {
|
|
18181
18172
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18182
|
-
"line":
|
|
18173
|
+
"line": 720
|
|
18183
18174
|
},
|
|
18184
18175
|
"name": "devDeps",
|
|
18185
18176
|
"optional": true,
|
|
@@ -18201,7 +18192,7 @@
|
|
|
18201
18192
|
"immutable": true,
|
|
18202
18193
|
"locationInModule": {
|
|
18203
18194
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18204
|
-
"line":
|
|
18195
|
+
"line": 703
|
|
18205
18196
|
},
|
|
18206
18197
|
"name": "devEngines",
|
|
18207
18198
|
"optional": true,
|
|
@@ -18291,7 +18282,7 @@
|
|
|
18291
18282
|
"immutable": true,
|
|
18292
18283
|
"locationInModule": {
|
|
18293
18284
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18294
|
-
"line":
|
|
18285
|
+
"line": 695
|
|
18295
18286
|
},
|
|
18296
18287
|
"name": "entrypoint",
|
|
18297
18288
|
"optional": true,
|
|
@@ -18328,7 +18319,7 @@
|
|
|
18328
18319
|
"immutable": true,
|
|
18329
18320
|
"locationInModule": {
|
|
18330
18321
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18331
|
-
"line":
|
|
18322
|
+
"line": 939
|
|
18332
18323
|
},
|
|
18333
18324
|
"name": "github",
|
|
18334
18325
|
"optional": true,
|
|
@@ -18346,7 +18337,7 @@
|
|
|
18346
18337
|
"immutable": true,
|
|
18347
18338
|
"locationInModule": {
|
|
18348
18339
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18349
|
-
"line":
|
|
18340
|
+
"line": 932
|
|
18350
18341
|
},
|
|
18351
18342
|
"name": "githubOptions",
|
|
18352
18343
|
"optional": true,
|
|
@@ -18385,7 +18376,7 @@
|
|
|
18385
18376
|
"immutable": true,
|
|
18386
18377
|
"locationInModule": {
|
|
18387
18378
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18388
|
-
"line":
|
|
18379
|
+
"line": 1042
|
|
18389
18380
|
},
|
|
18390
18381
|
"name": "gitIgnoreOptions",
|
|
18391
18382
|
"optional": true,
|
|
@@ -18402,7 +18393,7 @@
|
|
|
18402
18393
|
"immutable": true,
|
|
18403
18394
|
"locationInModule": {
|
|
18404
18395
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18405
|
-
"line":
|
|
18396
|
+
"line": 1037
|
|
18406
18397
|
},
|
|
18407
18398
|
"name": "gitOptions",
|
|
18408
18399
|
"optional": true,
|
|
@@ -18420,7 +18411,7 @@
|
|
|
18420
18411
|
"immutable": true,
|
|
18421
18412
|
"locationInModule": {
|
|
18422
18413
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18423
|
-
"line":
|
|
18414
|
+
"line": 926
|
|
18424
18415
|
},
|
|
18425
18416
|
"name": "gitpod",
|
|
18426
18417
|
"optional": true,
|
|
@@ -18438,7 +18429,7 @@
|
|
|
18438
18429
|
"immutable": true,
|
|
18439
18430
|
"locationInModule": {
|
|
18440
18431
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18441
|
-
"line":
|
|
18432
|
+
"line": 1060
|
|
18442
18433
|
},
|
|
18443
18434
|
"name": "homebrew",
|
|
18444
18435
|
"optional": true,
|
|
@@ -18456,7 +18447,7 @@
|
|
|
18456
18447
|
"immutable": true,
|
|
18457
18448
|
"locationInModule": {
|
|
18458
18449
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18459
|
-
"line":
|
|
18450
|
+
"line": 1065
|
|
18460
18451
|
},
|
|
18461
18452
|
"name": "homebrewOptions",
|
|
18462
18453
|
"optional": true,
|
|
@@ -18473,7 +18464,7 @@
|
|
|
18473
18464
|
"immutable": true,
|
|
18474
18465
|
"locationInModule": {
|
|
18475
18466
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18476
|
-
"line":
|
|
18467
|
+
"line": 688
|
|
18477
18468
|
},
|
|
18478
18469
|
"name": "homepage",
|
|
18479
18470
|
"optional": true,
|
|
@@ -18508,7 +18499,7 @@
|
|
|
18508
18499
|
"immutable": true,
|
|
18509
18500
|
"locationInModule": {
|
|
18510
18501
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18511
|
-
"line":
|
|
18502
|
+
"line": 683
|
|
18512
18503
|
},
|
|
18513
18504
|
"name": "keywords",
|
|
18514
18505
|
"optional": true,
|
|
@@ -18550,7 +18541,7 @@
|
|
|
18550
18541
|
"immutable": true,
|
|
18551
18542
|
"locationInModule": {
|
|
18552
18543
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18553
|
-
"line":
|
|
18544
|
+
"line": 678
|
|
18554
18545
|
},
|
|
18555
18546
|
"name": "license",
|
|
18556
18547
|
"optional": true,
|
|
@@ -18568,7 +18559,7 @@
|
|
|
18568
18559
|
"immutable": true,
|
|
18569
18560
|
"locationInModule": {
|
|
18570
18561
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18571
|
-
"line":
|
|
18562
|
+
"line": 670
|
|
18572
18563
|
},
|
|
18573
18564
|
"name": "licensed",
|
|
18574
18565
|
"optional": true,
|
|
@@ -18586,7 +18577,7 @@
|
|
|
18586
18577
|
"immutable": true,
|
|
18587
18578
|
"locationInModule": {
|
|
18588
18579
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18589
|
-
"line":
|
|
18580
|
+
"line": 1032
|
|
18590
18581
|
},
|
|
18591
18582
|
"name": "logging",
|
|
18592
18583
|
"optional": true,
|
|
@@ -18624,7 +18615,7 @@
|
|
|
18624
18615
|
"immutable": true,
|
|
18625
18616
|
"locationInModule": {
|
|
18626
18617
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18627
|
-
"line":
|
|
18618
|
+
"line": 664
|
|
18628
18619
|
},
|
|
18629
18620
|
"name": "maxNodeVersion",
|
|
18630
18621
|
"optional": true,
|
|
@@ -18662,7 +18653,7 @@
|
|
|
18662
18653
|
"immutable": true,
|
|
18663
18654
|
"locationInModule": {
|
|
18664
18655
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18665
|
-
"line":
|
|
18656
|
+
"line": 653
|
|
18666
18657
|
},
|
|
18667
18658
|
"name": "minNodeVersion",
|
|
18668
18659
|
"optional": true,
|
|
@@ -18680,7 +18671,7 @@
|
|
|
18680
18671
|
"immutable": true,
|
|
18681
18672
|
"locationInModule": {
|
|
18682
18673
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18683
|
-
"line":
|
|
18674
|
+
"line": 1070
|
|
18684
18675
|
},
|
|
18685
18676
|
"name": "mise",
|
|
18686
18677
|
"optional": true,
|
|
@@ -18698,7 +18689,7 @@
|
|
|
18698
18689
|
"immutable": true,
|
|
18699
18690
|
"locationInModule": {
|
|
18700
18691
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18701
|
-
"line":
|
|
18692
|
+
"line": 1075
|
|
18702
18693
|
},
|
|
18703
18694
|
"name": "miseOptions",
|
|
18704
18695
|
"optional": true,
|
|
@@ -18735,7 +18726,7 @@
|
|
|
18735
18726
|
"immutable": true,
|
|
18736
18727
|
"locationInModule": {
|
|
18737
18728
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18738
|
-
"line":
|
|
18729
|
+
"line": 638
|
|
18739
18730
|
},
|
|
18740
18731
|
"name": "npmAccess",
|
|
18741
18732
|
"optional": true,
|
|
@@ -18808,7 +18799,7 @@
|
|
|
18808
18799
|
"immutable": true,
|
|
18809
18800
|
"locationInModule": {
|
|
18810
18801
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18811
|
-
"line":
|
|
18802
|
+
"line": 630
|
|
18812
18803
|
},
|
|
18813
18804
|
"name": "npmProvenance",
|
|
18814
18805
|
"optional": true,
|
|
@@ -18827,7 +18818,7 @@
|
|
|
18827
18818
|
"immutable": true,
|
|
18828
18819
|
"locationInModule": {
|
|
18829
18820
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18830
|
-
"line":
|
|
18821
|
+
"line": 619
|
|
18831
18822
|
},
|
|
18832
18823
|
"name": "npmRegistryUrl",
|
|
18833
18824
|
"optional": true,
|
|
@@ -18845,7 +18836,7 @@
|
|
|
18845
18836
|
"immutable": true,
|
|
18846
18837
|
"locationInModule": {
|
|
18847
18838
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18848
|
-
"line":
|
|
18839
|
+
"line": 612
|
|
18849
18840
|
},
|
|
18850
18841
|
"name": "npmTokenSecret",
|
|
18851
18842
|
"optional": true,
|
|
@@ -18863,7 +18854,7 @@
|
|
|
18863
18854
|
"immutable": true,
|
|
18864
18855
|
"locationInModule": {
|
|
18865
18856
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18866
|
-
"line":
|
|
18857
|
+
"line": 606
|
|
18867
18858
|
},
|
|
18868
18859
|
"name": "npmTrustedPublishing",
|
|
18869
18860
|
"optional": true,
|
|
@@ -18882,7 +18873,7 @@
|
|
|
18882
18873
|
"immutable": true,
|
|
18883
18874
|
"locationInModule": {
|
|
18884
18875
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18885
|
-
"line":
|
|
18876
|
+
"line": 1026
|
|
18886
18877
|
},
|
|
18887
18878
|
"name": "outdir",
|
|
18888
18879
|
"optional": true,
|
|
@@ -18911,17 +18902,14 @@
|
|
|
18911
18902
|
{
|
|
18912
18903
|
"abstract": true,
|
|
18913
18904
|
"docs": {
|
|
18914
|
-
"
|
|
18915
|
-
"pjnew": "$PACKAGE_MANAGER"
|
|
18916
|
-
},
|
|
18917
|
-
"default": "- Detected from the calling process or `YARN_CLASSIC` if detection fails.",
|
|
18905
|
+
"default": "- pnpm",
|
|
18918
18906
|
"stability": "experimental",
|
|
18919
18907
|
"summary": "The Node Package Manager used to execute scripts."
|
|
18920
18908
|
},
|
|
18921
18909
|
"immutable": true,
|
|
18922
18910
|
"locationInModule": {
|
|
18923
18911
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18924
|
-
"line":
|
|
18912
|
+
"line": 600
|
|
18925
18913
|
},
|
|
18926
18914
|
"name": "packageManager",
|
|
18927
18915
|
"optional": true,
|
|
@@ -18959,7 +18947,7 @@
|
|
|
18959
18947
|
"immutable": true,
|
|
18960
18948
|
"locationInModule": {
|
|
18961
18949
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
18962
|
-
"line":
|
|
18950
|
+
"line": 1015
|
|
18963
18951
|
},
|
|
18964
18952
|
"name": "parent",
|
|
18965
18953
|
"optional": true,
|
|
@@ -19095,7 +19083,7 @@
|
|
|
19095
19083
|
"immutable": true,
|
|
19096
19084
|
"locationInModule": {
|
|
19097
19085
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19098
|
-
"line":
|
|
19086
|
+
"line": 1010
|
|
19099
19087
|
},
|
|
19100
19088
|
"name": "projectTree",
|
|
19101
19089
|
"optional": true,
|
|
@@ -19114,7 +19102,7 @@
|
|
|
19114
19102
|
"immutable": true,
|
|
19115
19103
|
"locationInModule": {
|
|
19116
19104
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19117
|
-
"line":
|
|
19105
|
+
"line": 1004
|
|
19118
19106
|
},
|
|
19119
19107
|
"name": "projenCommand",
|
|
19120
19108
|
"optional": true,
|
|
@@ -19132,7 +19120,7 @@
|
|
|
19132
19120
|
"immutable": true,
|
|
19133
19121
|
"locationInModule": {
|
|
19134
19122
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19135
|
-
"line":
|
|
19123
|
+
"line": 920
|
|
19136
19124
|
},
|
|
19137
19125
|
"name": "projenCredentials",
|
|
19138
19126
|
"optional": true,
|
|
@@ -19186,7 +19174,7 @@
|
|
|
19186
19174
|
"immutable": true,
|
|
19187
19175
|
"locationInModule": {
|
|
19188
19176
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19189
|
-
"line":
|
|
19177
|
+
"line": 997
|
|
19190
19178
|
},
|
|
19191
19179
|
"name": "projenrcJson",
|
|
19192
19180
|
"optional": true,
|
|
@@ -19204,7 +19192,7 @@
|
|
|
19204
19192
|
"immutable": true,
|
|
19205
19193
|
"locationInModule": {
|
|
19206
19194
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19207
|
-
"line":
|
|
19195
|
+
"line": 991
|
|
19208
19196
|
},
|
|
19209
19197
|
"name": "projenrcJsonOptions",
|
|
19210
19198
|
"optional": true,
|
|
@@ -19374,7 +19362,7 @@
|
|
|
19374
19362
|
"immutable": true,
|
|
19375
19363
|
"locationInModule": {
|
|
19376
19364
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19377
|
-
"line":
|
|
19365
|
+
"line": 914
|
|
19378
19366
|
},
|
|
19379
19367
|
"name": "readme",
|
|
19380
19368
|
"optional": true,
|
|
@@ -19626,7 +19614,7 @@
|
|
|
19626
19614
|
"immutable": true,
|
|
19627
19615
|
"locationInModule": {
|
|
19628
19616
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19629
|
-
"line":
|
|
19617
|
+
"line": 985
|
|
19630
19618
|
},
|
|
19631
19619
|
"name": "renovatebot",
|
|
19632
19620
|
"optional": true,
|
|
@@ -19644,7 +19632,7 @@
|
|
|
19644
19632
|
"immutable": true,
|
|
19645
19633
|
"locationInModule": {
|
|
19646
19634
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19647
|
-
"line":
|
|
19635
|
+
"line": 979
|
|
19648
19636
|
},
|
|
19649
19637
|
"name": "renovatebotOptions",
|
|
19650
19638
|
"optional": true,
|
|
@@ -19775,7 +19763,7 @@
|
|
|
19775
19763
|
"immutable": true,
|
|
19776
19764
|
"locationInModule": {
|
|
19777
19765
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19778
|
-
"line":
|
|
19766
|
+
"line": 908
|
|
19779
19767
|
},
|
|
19780
19768
|
"name": "stale",
|
|
19781
19769
|
"optional": true,
|
|
@@ -19794,7 +19782,7 @@
|
|
|
19794
19782
|
"immutable": true,
|
|
19795
19783
|
"locationInModule": {
|
|
19796
19784
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19797
|
-
"line":
|
|
19785
|
+
"line": 901
|
|
19798
19786
|
},
|
|
19799
19787
|
"name": "staleOptions",
|
|
19800
19788
|
"optional": true,
|
|
@@ -19929,7 +19917,7 @@
|
|
|
19929
19917
|
"immutable": true,
|
|
19930
19918
|
"locationInModule": {
|
|
19931
19919
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19932
|
-
"line":
|
|
19920
|
+
"line": 1080
|
|
19933
19921
|
},
|
|
19934
19922
|
"name": "vitest",
|
|
19935
19923
|
"optional": true,
|
|
@@ -19947,7 +19935,7 @@
|
|
|
19947
19935
|
"immutable": true,
|
|
19948
19936
|
"locationInModule": {
|
|
19949
19937
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19950
|
-
"line":
|
|
19938
|
+
"line": 1085
|
|
19951
19939
|
},
|
|
19952
19940
|
"name": "vitestOptions",
|
|
19953
19941
|
"optional": true,
|
|
@@ -19966,7 +19954,7 @@
|
|
|
19966
19954
|
"immutable": true,
|
|
19967
19955
|
"locationInModule": {
|
|
19968
19956
|
"filename": "src/projects/typescript-options.generated.ts",
|
|
19969
|
-
"line":
|
|
19957
|
+
"line": 894
|
|
19970
19958
|
},
|
|
19971
19959
|
"name": "vscode",
|
|
19972
19960
|
"optional": true,
|
|
@@ -20881,6 +20869,6 @@
|
|
|
20881
20869
|
"symbolId": "src/components/vitest:VitestOptions"
|
|
20882
20870
|
}
|
|
20883
20871
|
},
|
|
20884
|
-
"version": "0.3.
|
|
20885
|
-
"fingerprint": "
|
|
20872
|
+
"version": "0.3.4",
|
|
20873
|
+
"fingerprint": "GJlALatDLNS9gDCAd4fqs32cjpz1rrf3z1JthwWdbBs="
|
|
20886
20874
|
}
|