projen-modules 1.2.82 → 1.2.83
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 +312 -186
- package/API.md +159 -0
- package/lib/components/readme/elements/section.js +1 -1
- package/lib/components/readme/index.js +1 -1
- package/lib/projects/cdk-ts/cdk-typescript-app-options.d.ts +36 -0
- package/lib/projects/cdk-ts/cdk-typescript-app-options.js +1 -1
- package/lib/projects/cdk-ts/index.js +1 -1
- package/lib/projects/jsii/index.js +1 -1
- package/lib/projects/jsii/jsii-project-options.d.ts +36 -0
- package/lib/projects/jsii/jsii-project-options.js +1 -1
- package/lib/projects/npm/index.js +1 -1
- package/lib/projects/npm/npm-package-options.d.ts +36 -0
- package/lib/projects/npm/npm-package-options.js +1 -1
- package/lib/projects/python/index.js +1 -1
- package/package.json +3 -3
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"constructs": "10.6.0",
|
|
11
|
-
"projen": "0.* >=0.101.
|
|
11
|
+
"projen": "0.* >=0.101.8"
|
|
12
12
|
},
|
|
13
13
|
"dependencyClosure": {
|
|
14
14
|
"constructs": {
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
"immutable": true,
|
|
205
205
|
"locationInModule": {
|
|
206
206
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
207
|
-
"line":
|
|
207
|
+
"line": 1210
|
|
208
208
|
},
|
|
209
209
|
"name": "codeOwners",
|
|
210
210
|
"type": {
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"immutable": true,
|
|
230
230
|
"locationInModule": {
|
|
231
231
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
232
|
-
"line":
|
|
232
|
+
"line": 1206
|
|
233
233
|
},
|
|
234
234
|
"name": "name",
|
|
235
235
|
"type": {
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
"immutable": true,
|
|
247
247
|
"locationInModule": {
|
|
248
248
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
249
|
-
"line":
|
|
249
|
+
"line": 1040
|
|
250
250
|
},
|
|
251
251
|
"name": "addPackageManagerToDevEngines",
|
|
252
252
|
"optional": true,
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
"immutable": true,
|
|
266
266
|
"locationInModule": {
|
|
267
267
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
268
|
-
"line":
|
|
268
|
+
"line": 1034
|
|
269
269
|
},
|
|
270
270
|
"name": "allowLibraryDependencies",
|
|
271
271
|
"optional": true,
|
|
@@ -273,6 +273,30 @@
|
|
|
273
273
|
"primitive": "boolean"
|
|
274
274
|
}
|
|
275
275
|
},
|
|
276
|
+
{
|
|
277
|
+
"abstract": true,
|
|
278
|
+
"docs": {
|
|
279
|
+
"default": "- all install scripts are allowed to run (package manager default)",
|
|
280
|
+
"remarks": "These scripts can execute arbitrary code, making them a common\nsupply-chain attack vector. Package managers are moving toward\nblocking them by default and requiring an explicit allowlist.\nConfiguring `allowScripts` sets up that allowlist so scripts only run\nfor the packages you have explicitly reviewed and trust.\n\nSupport for this setting depends on the configured `packageManager`:\n\n- `NPM`: written to the native `allowScripts` field in `package.json`\n (requires npm >= 11.16; see https://docs.npmjs.com/cli/v11/commands/npm-approve-scripts).\n- `BUN`: written to the native `trustedDependencies` field in\n `package.json` (see https://bun.com/docs/pm/lifecycle).\n- `PNPM`: written to the `onlyBuiltDependencies` setting in\n `pnpm-workspace.yaml` (see https://pnpm.io/settings#onlybuiltdependencies).\n- `YARN2`, `YARN_BERRY`: written to the native\n `dependenciesMeta.<pkg>.built` allowlist in `package.json`, combined\n with `enableScripts: false` in `.yarnrc.yml` (see\n https://yarnpkg.com/features/security#postinstalls). If you set\n `yarnBerryOptions.yarnRcOptions.enableScripts` explicitly, that value\n is respected instead of being overridden.\n- `YARN`, `YARN_CLASSIC`: not supported. Yarn Classic has no native\n mechanism to allowlist install scripts for specific dependencies.\n Setting this option with one of these package managers throws an\n error at synthesis time.",
|
|
281
|
+
"stability": "experimental",
|
|
282
|
+
"summary": "List of dependency (package) names that are allowed to run lifecycle install scripts (`preinstall`, `install`, `postinstall`, `prepare`) during dependency installation."
|
|
283
|
+
},
|
|
284
|
+
"immutable": true,
|
|
285
|
+
"locationInModule": {
|
|
286
|
+
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
287
|
+
"line": 1026
|
|
288
|
+
},
|
|
289
|
+
"name": "allowScripts",
|
|
290
|
+
"optional": true,
|
|
291
|
+
"type": {
|
|
292
|
+
"collection": {
|
|
293
|
+
"elementtype": {
|
|
294
|
+
"primitive": "string"
|
|
295
|
+
},
|
|
296
|
+
"kind": "array"
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
},
|
|
276
300
|
{
|
|
277
301
|
"abstract": true,
|
|
278
302
|
"docs": {
|
|
@@ -372,7 +396,7 @@
|
|
|
372
396
|
"immutable": true,
|
|
373
397
|
"locationInModule": {
|
|
374
398
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
375
|
-
"line":
|
|
399
|
+
"line": 996
|
|
376
400
|
},
|
|
377
401
|
"name": "authorEmail",
|
|
378
402
|
"optional": true,
|
|
@@ -389,7 +413,7 @@
|
|
|
389
413
|
"immutable": true,
|
|
390
414
|
"locationInModule": {
|
|
391
415
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
392
|
-
"line":
|
|
416
|
+
"line": 991
|
|
393
417
|
},
|
|
394
418
|
"name": "authorName",
|
|
395
419
|
"optional": true,
|
|
@@ -406,7 +430,7 @@
|
|
|
406
430
|
"immutable": true,
|
|
407
431
|
"locationInModule": {
|
|
408
432
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
409
|
-
"line":
|
|
433
|
+
"line": 986
|
|
410
434
|
},
|
|
411
435
|
"name": "authorOrganization",
|
|
412
436
|
"optional": true,
|
|
@@ -423,7 +447,7 @@
|
|
|
423
447
|
"immutable": true,
|
|
424
448
|
"locationInModule": {
|
|
425
449
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
426
|
-
"line":
|
|
450
|
+
"line": 981
|
|
427
451
|
},
|
|
428
452
|
"name": "authorUrl",
|
|
429
453
|
"optional": true,
|
|
@@ -441,7 +465,7 @@
|
|
|
441
465
|
"immutable": true,
|
|
442
466
|
"locationInModule": {
|
|
443
467
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
444
|
-
"line":
|
|
468
|
+
"line": 1124
|
|
445
469
|
},
|
|
446
470
|
"name": "autoApproveOptions",
|
|
447
471
|
"optional": true,
|
|
@@ -478,7 +502,7 @@
|
|
|
478
502
|
"immutable": true,
|
|
479
503
|
"locationInModule": {
|
|
480
504
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
481
|
-
"line":
|
|
505
|
+
"line": 976
|
|
482
506
|
},
|
|
483
507
|
"name": "autoDetectBin",
|
|
484
508
|
"optional": true,
|
|
@@ -497,7 +521,7 @@
|
|
|
497
521
|
"immutable": true,
|
|
498
522
|
"locationInModule": {
|
|
499
523
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
500
|
-
"line":
|
|
524
|
+
"line": 1118
|
|
501
525
|
},
|
|
502
526
|
"name": "autoMerge",
|
|
503
527
|
"optional": true,
|
|
@@ -516,7 +540,7 @@
|
|
|
516
540
|
"immutable": true,
|
|
517
541
|
"locationInModule": {
|
|
518
542
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
519
|
-
"line":
|
|
543
|
+
"line": 1110
|
|
520
544
|
},
|
|
521
545
|
"name": "autoMergeOptions",
|
|
522
546
|
"optional": true,
|
|
@@ -534,7 +558,7 @@
|
|
|
534
558
|
"immutable": true,
|
|
535
559
|
"locationInModule": {
|
|
536
560
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
537
|
-
"line":
|
|
561
|
+
"line": 970
|
|
538
562
|
},
|
|
539
563
|
"name": "bin",
|
|
540
564
|
"optional": true,
|
|
@@ -592,7 +616,7 @@
|
|
|
592
616
|
"immutable": true,
|
|
593
617
|
"locationInModule": {
|
|
594
618
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
595
|
-
"line":
|
|
619
|
+
"line": 962
|
|
596
620
|
},
|
|
597
621
|
"name": "bugsEmail",
|
|
598
622
|
"optional": true,
|
|
@@ -609,7 +633,7 @@
|
|
|
609
633
|
"immutable": true,
|
|
610
634
|
"locationInModule": {
|
|
611
635
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
612
|
-
"line":
|
|
636
|
+
"line": 957
|
|
613
637
|
},
|
|
614
638
|
"name": "bugsUrl",
|
|
615
639
|
"optional": true,
|
|
@@ -700,7 +724,7 @@
|
|
|
700
724
|
"immutable": true,
|
|
701
725
|
"locationInModule": {
|
|
702
726
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
703
|
-
"line":
|
|
727
|
+
"line": 952
|
|
704
728
|
},
|
|
705
729
|
"name": "bundledDeps",
|
|
706
730
|
"optional": true,
|
|
@@ -740,7 +764,7 @@
|
|
|
740
764
|
"immutable": true,
|
|
741
765
|
"locationInModule": {
|
|
742
766
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
743
|
-
"line":
|
|
767
|
+
"line": 937
|
|
744
768
|
},
|
|
745
769
|
"name": "bunVersion",
|
|
746
770
|
"optional": true,
|
|
@@ -832,7 +856,7 @@
|
|
|
832
856
|
"immutable": true,
|
|
833
857
|
"locationInModule": {
|
|
834
858
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
835
|
-
"line":
|
|
859
|
+
"line": 1102
|
|
836
860
|
},
|
|
837
861
|
"name": "clobber",
|
|
838
862
|
"optional": true,
|
|
@@ -851,7 +875,7 @@
|
|
|
851
875
|
"immutable": true,
|
|
852
876
|
"locationInModule": {
|
|
853
877
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
854
|
-
"line":
|
|
878
|
+
"line": 931
|
|
855
879
|
},
|
|
856
880
|
"name": "codeArtifactOptions",
|
|
857
881
|
"optional": true,
|
|
@@ -905,7 +929,7 @@
|
|
|
905
929
|
"immutable": true,
|
|
906
930
|
"locationInModule": {
|
|
907
931
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
908
|
-
"line":
|
|
932
|
+
"line": 1199
|
|
909
933
|
},
|
|
910
934
|
"name": "commitGenerated",
|
|
911
935
|
"optional": true,
|
|
@@ -1022,7 +1046,7 @@
|
|
|
1022
1046
|
"immutable": true,
|
|
1023
1047
|
"locationInModule": {
|
|
1024
1048
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1025
|
-
"line":
|
|
1049
|
+
"line": 924
|
|
1026
1050
|
},
|
|
1027
1051
|
"name": "deleteOrphanedLockFiles",
|
|
1028
1052
|
"optional": true,
|
|
@@ -1081,7 +1105,7 @@
|
|
|
1081
1105
|
"immutable": true,
|
|
1082
1106
|
"locationInModule": {
|
|
1083
1107
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1084
|
-
"line":
|
|
1108
|
+
"line": 914
|
|
1085
1109
|
},
|
|
1086
1110
|
"name": "deps",
|
|
1087
1111
|
"optional": true,
|
|
@@ -1144,7 +1168,7 @@
|
|
|
1144
1168
|
"immutable": true,
|
|
1145
1169
|
"locationInModule": {
|
|
1146
1170
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1147
|
-
"line":
|
|
1171
|
+
"line": 901
|
|
1148
1172
|
},
|
|
1149
1173
|
"name": "description",
|
|
1150
1174
|
"optional": true,
|
|
@@ -1162,7 +1186,7 @@
|
|
|
1162
1186
|
"immutable": true,
|
|
1163
1187
|
"locationInModule": {
|
|
1164
1188
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1165
|
-
"line":
|
|
1189
|
+
"line": 1096
|
|
1166
1190
|
},
|
|
1167
1191
|
"name": "devContainer",
|
|
1168
1192
|
"optional": true,
|
|
@@ -1184,7 +1208,7 @@
|
|
|
1184
1208
|
"immutable": true,
|
|
1185
1209
|
"locationInModule": {
|
|
1186
1210
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1187
|
-
"line":
|
|
1211
|
+
"line": 893
|
|
1188
1212
|
},
|
|
1189
1213
|
"name": "devDeps",
|
|
1190
1214
|
"optional": true,
|
|
@@ -1206,7 +1230,7 @@
|
|
|
1206
1230
|
"immutable": true,
|
|
1207
1231
|
"locationInModule": {
|
|
1208
1232
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1209
|
-
"line":
|
|
1233
|
+
"line": 876
|
|
1210
1234
|
},
|
|
1211
1235
|
"name": "devEngines",
|
|
1212
1236
|
"optional": true,
|
|
@@ -1314,7 +1338,7 @@
|
|
|
1314
1338
|
"immutable": true,
|
|
1315
1339
|
"locationInModule": {
|
|
1316
1340
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1317
|
-
"line":
|
|
1341
|
+
"line": 868
|
|
1318
1342
|
},
|
|
1319
1343
|
"name": "entrypoint",
|
|
1320
1344
|
"optional": true,
|
|
@@ -1423,7 +1447,7 @@
|
|
|
1423
1447
|
"immutable": true,
|
|
1424
1448
|
"locationInModule": {
|
|
1425
1449
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1426
|
-
"line":
|
|
1450
|
+
"line": 1090
|
|
1427
1451
|
},
|
|
1428
1452
|
"name": "github",
|
|
1429
1453
|
"optional": true,
|
|
@@ -1441,7 +1465,7 @@
|
|
|
1441
1465
|
"immutable": true,
|
|
1442
1466
|
"locationInModule": {
|
|
1443
1467
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1444
|
-
"line":
|
|
1468
|
+
"line": 1083
|
|
1445
1469
|
},
|
|
1446
1470
|
"name": "githubOptions",
|
|
1447
1471
|
"optional": true,
|
|
@@ -1480,7 +1504,7 @@
|
|
|
1480
1504
|
"immutable": true,
|
|
1481
1505
|
"locationInModule": {
|
|
1482
1506
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1483
|
-
"line":
|
|
1507
|
+
"line": 1193
|
|
1484
1508
|
},
|
|
1485
1509
|
"name": "gitIgnoreOptions",
|
|
1486
1510
|
"optional": true,
|
|
@@ -1497,7 +1521,7 @@
|
|
|
1497
1521
|
"immutable": true,
|
|
1498
1522
|
"locationInModule": {
|
|
1499
1523
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1500
|
-
"line":
|
|
1524
|
+
"line": 1188
|
|
1501
1525
|
},
|
|
1502
1526
|
"name": "gitOptions",
|
|
1503
1527
|
"optional": true,
|
|
@@ -1515,7 +1539,7 @@
|
|
|
1515
1539
|
"immutable": true,
|
|
1516
1540
|
"locationInModule": {
|
|
1517
1541
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1518
|
-
"line":
|
|
1542
|
+
"line": 1077
|
|
1519
1543
|
},
|
|
1520
1544
|
"name": "gitpod",
|
|
1521
1545
|
"optional": true,
|
|
@@ -1532,7 +1556,7 @@
|
|
|
1532
1556
|
"immutable": true,
|
|
1533
1557
|
"locationInModule": {
|
|
1534
1558
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1535
|
-
"line":
|
|
1559
|
+
"line": 861
|
|
1536
1560
|
},
|
|
1537
1561
|
"name": "homepage",
|
|
1538
1562
|
"optional": true,
|
|
@@ -1621,7 +1645,7 @@
|
|
|
1621
1645
|
"immutable": true,
|
|
1622
1646
|
"locationInModule": {
|
|
1623
1647
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1624
|
-
"line":
|
|
1648
|
+
"line": 856
|
|
1625
1649
|
},
|
|
1626
1650
|
"name": "keywords",
|
|
1627
1651
|
"optional": true,
|
|
@@ -1717,7 +1741,7 @@
|
|
|
1717
1741
|
"immutable": true,
|
|
1718
1742
|
"locationInModule": {
|
|
1719
1743
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1720
|
-
"line":
|
|
1744
|
+
"line": 851
|
|
1721
1745
|
},
|
|
1722
1746
|
"name": "license",
|
|
1723
1747
|
"optional": true,
|
|
@@ -1735,7 +1759,7 @@
|
|
|
1735
1759
|
"immutable": true,
|
|
1736
1760
|
"locationInModule": {
|
|
1737
1761
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1738
|
-
"line":
|
|
1762
|
+
"line": 843
|
|
1739
1763
|
},
|
|
1740
1764
|
"name": "licensed",
|
|
1741
1765
|
"optional": true,
|
|
@@ -1753,7 +1777,7 @@
|
|
|
1753
1777
|
"immutable": true,
|
|
1754
1778
|
"locationInModule": {
|
|
1755
1779
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1756
|
-
"line":
|
|
1780
|
+
"line": 1183
|
|
1757
1781
|
},
|
|
1758
1782
|
"name": "logging",
|
|
1759
1783
|
"optional": true,
|
|
@@ -1791,7 +1815,7 @@
|
|
|
1791
1815
|
"immutable": true,
|
|
1792
1816
|
"locationInModule": {
|
|
1793
1817
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1794
|
-
"line":
|
|
1818
|
+
"line": 837
|
|
1795
1819
|
},
|
|
1796
1820
|
"name": "maxNodeVersion",
|
|
1797
1821
|
"optional": true,
|
|
@@ -1829,7 +1853,7 @@
|
|
|
1829
1853
|
"immutable": true,
|
|
1830
1854
|
"locationInModule": {
|
|
1831
1855
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1832
|
-
"line":
|
|
1856
|
+
"line": 826
|
|
1833
1857
|
},
|
|
1834
1858
|
"name": "minNodeVersion",
|
|
1835
1859
|
"optional": true,
|
|
@@ -1866,7 +1890,7 @@
|
|
|
1866
1890
|
"immutable": true,
|
|
1867
1891
|
"locationInModule": {
|
|
1868
1892
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1869
|
-
"line":
|
|
1893
|
+
"line": 811
|
|
1870
1894
|
},
|
|
1871
1895
|
"name": "npmAccess",
|
|
1872
1896
|
"optional": true,
|
|
@@ -1939,7 +1963,7 @@
|
|
|
1939
1963
|
"immutable": true,
|
|
1940
1964
|
"locationInModule": {
|
|
1941
1965
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1942
|
-
"line":
|
|
1966
|
+
"line": 803
|
|
1943
1967
|
},
|
|
1944
1968
|
"name": "npmProvenance",
|
|
1945
1969
|
"optional": true,
|
|
@@ -1958,7 +1982,7 @@
|
|
|
1958
1982
|
"immutable": true,
|
|
1959
1983
|
"locationInModule": {
|
|
1960
1984
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1961
|
-
"line":
|
|
1985
|
+
"line": 792
|
|
1962
1986
|
},
|
|
1963
1987
|
"name": "npmRegistryUrl",
|
|
1964
1988
|
"optional": true,
|
|
@@ -1976,7 +2000,7 @@
|
|
|
1976
2000
|
"immutable": true,
|
|
1977
2001
|
"locationInModule": {
|
|
1978
2002
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1979
|
-
"line":
|
|
2003
|
+
"line": 785
|
|
1980
2004
|
},
|
|
1981
2005
|
"name": "npmTokenSecret",
|
|
1982
2006
|
"optional": true,
|
|
@@ -1994,7 +2018,7 @@
|
|
|
1994
2018
|
"immutable": true,
|
|
1995
2019
|
"locationInModule": {
|
|
1996
2020
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
1997
|
-
"line":
|
|
2021
|
+
"line": 779
|
|
1998
2022
|
},
|
|
1999
2023
|
"name": "npmTrustedPublishing",
|
|
2000
2024
|
"optional": true,
|
|
@@ -2013,7 +2037,7 @@
|
|
|
2013
2037
|
"immutable": true,
|
|
2014
2038
|
"locationInModule": {
|
|
2015
2039
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2016
|
-
"line":
|
|
2040
|
+
"line": 1177
|
|
2017
2041
|
},
|
|
2018
2042
|
"name": "outdir",
|
|
2019
2043
|
"optional": true,
|
|
@@ -2052,7 +2076,7 @@
|
|
|
2052
2076
|
"immutable": true,
|
|
2053
2077
|
"locationInModule": {
|
|
2054
2078
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2055
|
-
"line":
|
|
2079
|
+
"line": 773
|
|
2056
2080
|
},
|
|
2057
2081
|
"name": "packageManager",
|
|
2058
2082
|
"optional": true,
|
|
@@ -2073,7 +2097,7 @@
|
|
|
2073
2097
|
"immutable": true,
|
|
2074
2098
|
"locationInModule": {
|
|
2075
2099
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2076
|
-
"line":
|
|
2100
|
+
"line": 766
|
|
2077
2101
|
},
|
|
2078
2102
|
"name": "packageName",
|
|
2079
2103
|
"optional": true,
|
|
@@ -2090,7 +2114,7 @@
|
|
|
2090
2114
|
"immutable": true,
|
|
2091
2115
|
"locationInModule": {
|
|
2092
2116
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2093
|
-
"line":
|
|
2117
|
+
"line": 1166
|
|
2094
2118
|
},
|
|
2095
2119
|
"name": "parent",
|
|
2096
2120
|
"optional": true,
|
|
@@ -2107,7 +2131,7 @@
|
|
|
2107
2131
|
"immutable": true,
|
|
2108
2132
|
"locationInModule": {
|
|
2109
2133
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2110
|
-
"line":
|
|
2134
|
+
"line": 759
|
|
2111
2135
|
},
|
|
2112
2136
|
"name": "peerDependencyOptions",
|
|
2113
2137
|
"optional": true,
|
|
@@ -2126,7 +2150,7 @@
|
|
|
2126
2150
|
"immutable": true,
|
|
2127
2151
|
"locationInModule": {
|
|
2128
2152
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2129
|
-
"line":
|
|
2153
|
+
"line": 754
|
|
2130
2154
|
},
|
|
2131
2155
|
"name": "peerDeps",
|
|
2132
2156
|
"optional": true,
|
|
@@ -2139,6 +2163,24 @@
|
|
|
2139
2163
|
}
|
|
2140
2164
|
}
|
|
2141
2165
|
},
|
|
2166
|
+
{
|
|
2167
|
+
"abstract": true,
|
|
2168
|
+
"docs": {
|
|
2169
|
+
"default": "- all default options",
|
|
2170
|
+
"stability": "experimental",
|
|
2171
|
+
"summary": "Options for pnpm."
|
|
2172
|
+
},
|
|
2173
|
+
"immutable": true,
|
|
2174
|
+
"locationInModule": {
|
|
2175
|
+
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2176
|
+
"line": 735
|
|
2177
|
+
},
|
|
2178
|
+
"name": "pnpmOptions",
|
|
2179
|
+
"optional": true,
|
|
2180
|
+
"type": {
|
|
2181
|
+
"fqn": "projen.javascript.PnpmOptions"
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
2142
2184
|
{
|
|
2143
2185
|
"abstract": true,
|
|
2144
2186
|
"docs": {
|
|
@@ -2244,7 +2286,7 @@
|
|
|
2244
2286
|
"immutable": true,
|
|
2245
2287
|
"locationInModule": {
|
|
2246
2288
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2247
|
-
"line":
|
|
2289
|
+
"line": 1161
|
|
2248
2290
|
},
|
|
2249
2291
|
"name": "projectTree",
|
|
2250
2292
|
"optional": true,
|
|
@@ -2263,7 +2305,7 @@
|
|
|
2263
2305
|
"immutable": true,
|
|
2264
2306
|
"locationInModule": {
|
|
2265
2307
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2266
|
-
"line":
|
|
2308
|
+
"line": 1155
|
|
2267
2309
|
},
|
|
2268
2310
|
"name": "projenCommand",
|
|
2269
2311
|
"optional": true,
|
|
@@ -2281,7 +2323,7 @@
|
|
|
2281
2323
|
"immutable": true,
|
|
2282
2324
|
"locationInModule": {
|
|
2283
2325
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2284
|
-
"line":
|
|
2326
|
+
"line": 1071
|
|
2285
2327
|
},
|
|
2286
2328
|
"name": "projenCredentials",
|
|
2287
2329
|
"optional": true,
|
|
@@ -2335,7 +2377,7 @@
|
|
|
2335
2377
|
"immutable": true,
|
|
2336
2378
|
"locationInModule": {
|
|
2337
2379
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2338
|
-
"line":
|
|
2380
|
+
"line": 1148
|
|
2339
2381
|
},
|
|
2340
2382
|
"name": "projenrcJson",
|
|
2341
2383
|
"optional": true,
|
|
@@ -2353,7 +2395,7 @@
|
|
|
2353
2395
|
"immutable": true,
|
|
2354
2396
|
"locationInModule": {
|
|
2355
2397
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2356
|
-
"line":
|
|
2398
|
+
"line": 1142
|
|
2357
2399
|
},
|
|
2358
2400
|
"name": "projenrcJsonOptions",
|
|
2359
2401
|
"optional": true,
|
|
@@ -2522,7 +2564,7 @@
|
|
|
2522
2564
|
"immutable": true,
|
|
2523
2565
|
"locationInModule": {
|
|
2524
2566
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2525
|
-
"line":
|
|
2567
|
+
"line": 1065
|
|
2526
2568
|
},
|
|
2527
2569
|
"name": "readme",
|
|
2528
2570
|
"optional": true,
|
|
@@ -2774,7 +2816,7 @@
|
|
|
2774
2816
|
"immutable": true,
|
|
2775
2817
|
"locationInModule": {
|
|
2776
2818
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2777
|
-
"line":
|
|
2819
|
+
"line": 1136
|
|
2778
2820
|
},
|
|
2779
2821
|
"name": "renovatebot",
|
|
2780
2822
|
"optional": true,
|
|
@@ -2792,7 +2834,7 @@
|
|
|
2792
2834
|
"immutable": true,
|
|
2793
2835
|
"locationInModule": {
|
|
2794
2836
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2795
|
-
"line":
|
|
2837
|
+
"line": 1130
|
|
2796
2838
|
},
|
|
2797
2839
|
"name": "renovatebotOptions",
|
|
2798
2840
|
"optional": true,
|
|
@@ -2977,7 +3019,7 @@
|
|
|
2977
3019
|
"immutable": true,
|
|
2978
3020
|
"locationInModule": {
|
|
2979
3021
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2980
|
-
"line":
|
|
3022
|
+
"line": 1061
|
|
2981
3023
|
},
|
|
2982
3024
|
"name": "stale",
|
|
2983
3025
|
"optional": true,
|
|
@@ -2996,7 +3038,7 @@
|
|
|
2996
3038
|
"immutable": true,
|
|
2997
3039
|
"locationInModule": {
|
|
2998
3040
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
2999
|
-
"line":
|
|
3041
|
+
"line": 1054
|
|
3000
3042
|
},
|
|
3001
3043
|
"name": "staleOptions",
|
|
3002
3044
|
"optional": true,
|
|
@@ -3149,7 +3191,7 @@
|
|
|
3149
3191
|
"immutable": true,
|
|
3150
3192
|
"locationInModule": {
|
|
3151
3193
|
"filename": "src/projects/cdk-ts/cdk-typescript-app-options.ts",
|
|
3152
|
-
"line":
|
|
3194
|
+
"line": 1047
|
|
3153
3195
|
},
|
|
3154
3196
|
"name": "vscode",
|
|
3155
3197
|
"optional": true,
|
|
@@ -3521,7 +3563,7 @@
|
|
|
3521
3563
|
"immutable": true,
|
|
3522
3564
|
"locationInModule": {
|
|
3523
3565
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3524
|
-
"line":
|
|
3566
|
+
"line": 1183
|
|
3525
3567
|
},
|
|
3526
3568
|
"name": "codeOwners",
|
|
3527
3569
|
"type": {
|
|
@@ -3546,7 +3588,7 @@
|
|
|
3546
3588
|
"immutable": true,
|
|
3547
3589
|
"locationInModule": {
|
|
3548
3590
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3549
|
-
"line":
|
|
3591
|
+
"line": 1179
|
|
3550
3592
|
},
|
|
3551
3593
|
"name": "name",
|
|
3552
3594
|
"type": {
|
|
@@ -3580,7 +3622,7 @@
|
|
|
3580
3622
|
"immutable": true,
|
|
3581
3623
|
"locationInModule": {
|
|
3582
3624
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3583
|
-
"line":
|
|
3625
|
+
"line": 1013
|
|
3584
3626
|
},
|
|
3585
3627
|
"name": "addPackageManagerToDevEngines",
|
|
3586
3628
|
"optional": true,
|
|
@@ -3599,7 +3641,7 @@
|
|
|
3599
3641
|
"immutable": true,
|
|
3600
3642
|
"locationInModule": {
|
|
3601
3643
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3602
|
-
"line":
|
|
3644
|
+
"line": 1007
|
|
3603
3645
|
},
|
|
3604
3646
|
"name": "allowLibraryDependencies",
|
|
3605
3647
|
"optional": true,
|
|
@@ -3607,6 +3649,30 @@
|
|
|
3607
3649
|
"primitive": "boolean"
|
|
3608
3650
|
}
|
|
3609
3651
|
},
|
|
3652
|
+
{
|
|
3653
|
+
"abstract": true,
|
|
3654
|
+
"docs": {
|
|
3655
|
+
"default": "- all install scripts are allowed to run (package manager default)",
|
|
3656
|
+
"remarks": "These scripts can execute arbitrary code, making them a common\nsupply-chain attack vector. Package managers are moving toward\nblocking them by default and requiring an explicit allowlist.\nConfiguring `allowScripts` sets up that allowlist so scripts only run\nfor the packages you have explicitly reviewed and trust.\n\nSupport for this setting depends on the configured `packageManager`:\n\n- `NPM`: written to the native `allowScripts` field in `package.json`\n (requires npm >= 11.16; see https://docs.npmjs.com/cli/v11/commands/npm-approve-scripts).\n- `BUN`: written to the native `trustedDependencies` field in\n `package.json` (see https://bun.com/docs/pm/lifecycle).\n- `PNPM`: written to the `onlyBuiltDependencies` setting in\n `pnpm-workspace.yaml` (see https://pnpm.io/settings#onlybuiltdependencies).\n- `YARN2`, `YARN_BERRY`: written to the native\n `dependenciesMeta.<pkg>.built` allowlist in `package.json`, combined\n with `enableScripts: false` in `.yarnrc.yml` (see\n https://yarnpkg.com/features/security#postinstalls). If you set\n `yarnBerryOptions.yarnRcOptions.enableScripts` explicitly, that value\n is respected instead of being overridden.\n- `YARN`, `YARN_CLASSIC`: not supported. Yarn Classic has no native\n mechanism to allowlist install scripts for specific dependencies.\n Setting this option with one of these package managers throws an\n error at synthesis time.",
|
|
3657
|
+
"stability": "experimental",
|
|
3658
|
+
"summary": "List of dependency (package) names that are allowed to run lifecycle install scripts (`preinstall`, `install`, `postinstall`, `prepare`) during dependency installation."
|
|
3659
|
+
},
|
|
3660
|
+
"immutable": true,
|
|
3661
|
+
"locationInModule": {
|
|
3662
|
+
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3663
|
+
"line": 999
|
|
3664
|
+
},
|
|
3665
|
+
"name": "allowScripts",
|
|
3666
|
+
"optional": true,
|
|
3667
|
+
"type": {
|
|
3668
|
+
"collection": {
|
|
3669
|
+
"elementtype": {
|
|
3670
|
+
"primitive": "string"
|
|
3671
|
+
},
|
|
3672
|
+
"kind": "array"
|
|
3673
|
+
}
|
|
3674
|
+
}
|
|
3675
|
+
},
|
|
3610
3676
|
{
|
|
3611
3677
|
"abstract": true,
|
|
3612
3678
|
"docs": {
|
|
@@ -3671,7 +3737,7 @@
|
|
|
3671
3737
|
"immutable": true,
|
|
3672
3738
|
"locationInModule": {
|
|
3673
3739
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3674
|
-
"line":
|
|
3740
|
+
"line": 969
|
|
3675
3741
|
},
|
|
3676
3742
|
"name": "authorEmail",
|
|
3677
3743
|
"optional": true,
|
|
@@ -3688,7 +3754,7 @@
|
|
|
3688
3754
|
"immutable": true,
|
|
3689
3755
|
"locationInModule": {
|
|
3690
3756
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3691
|
-
"line":
|
|
3757
|
+
"line": 964
|
|
3692
3758
|
},
|
|
3693
3759
|
"name": "authorName",
|
|
3694
3760
|
"optional": true,
|
|
@@ -3705,7 +3771,7 @@
|
|
|
3705
3771
|
"immutable": true,
|
|
3706
3772
|
"locationInModule": {
|
|
3707
3773
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3708
|
-
"line":
|
|
3774
|
+
"line": 959
|
|
3709
3775
|
},
|
|
3710
3776
|
"name": "authorOrganization",
|
|
3711
3777
|
"optional": true,
|
|
@@ -3722,7 +3788,7 @@
|
|
|
3722
3788
|
"immutable": true,
|
|
3723
3789
|
"locationInModule": {
|
|
3724
3790
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3725
|
-
"line":
|
|
3791
|
+
"line": 954
|
|
3726
3792
|
},
|
|
3727
3793
|
"name": "authorUrl",
|
|
3728
3794
|
"optional": true,
|
|
@@ -3740,7 +3806,7 @@
|
|
|
3740
3806
|
"immutable": true,
|
|
3741
3807
|
"locationInModule": {
|
|
3742
3808
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3743
|
-
"line":
|
|
3809
|
+
"line": 1097
|
|
3744
3810
|
},
|
|
3745
3811
|
"name": "autoApproveOptions",
|
|
3746
3812
|
"optional": true,
|
|
@@ -3777,7 +3843,7 @@
|
|
|
3777
3843
|
"immutable": true,
|
|
3778
3844
|
"locationInModule": {
|
|
3779
3845
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3780
|
-
"line":
|
|
3846
|
+
"line": 949
|
|
3781
3847
|
},
|
|
3782
3848
|
"name": "autoDetectBin",
|
|
3783
3849
|
"optional": true,
|
|
@@ -3796,7 +3862,7 @@
|
|
|
3796
3862
|
"immutable": true,
|
|
3797
3863
|
"locationInModule": {
|
|
3798
3864
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3799
|
-
"line":
|
|
3865
|
+
"line": 1091
|
|
3800
3866
|
},
|
|
3801
3867
|
"name": "autoMerge",
|
|
3802
3868
|
"optional": true,
|
|
@@ -3815,7 +3881,7 @@
|
|
|
3815
3881
|
"immutable": true,
|
|
3816
3882
|
"locationInModule": {
|
|
3817
3883
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3818
|
-
"line":
|
|
3884
|
+
"line": 1083
|
|
3819
3885
|
},
|
|
3820
3886
|
"name": "autoMergeOptions",
|
|
3821
3887
|
"optional": true,
|
|
@@ -3833,7 +3899,7 @@
|
|
|
3833
3899
|
"immutable": true,
|
|
3834
3900
|
"locationInModule": {
|
|
3835
3901
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3836
|
-
"line":
|
|
3902
|
+
"line": 943
|
|
3837
3903
|
},
|
|
3838
3904
|
"name": "bin",
|
|
3839
3905
|
"optional": true,
|
|
@@ -3891,7 +3957,7 @@
|
|
|
3891
3957
|
"immutable": true,
|
|
3892
3958
|
"locationInModule": {
|
|
3893
3959
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3894
|
-
"line":
|
|
3960
|
+
"line": 935
|
|
3895
3961
|
},
|
|
3896
3962
|
"name": "bugsEmail",
|
|
3897
3963
|
"optional": true,
|
|
@@ -3908,7 +3974,7 @@
|
|
|
3908
3974
|
"immutable": true,
|
|
3909
3975
|
"locationInModule": {
|
|
3910
3976
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3911
|
-
"line":
|
|
3977
|
+
"line": 930
|
|
3912
3978
|
},
|
|
3913
3979
|
"name": "bugsUrl",
|
|
3914
3980
|
"optional": true,
|
|
@@ -3980,7 +4046,7 @@
|
|
|
3980
4046
|
"immutable": true,
|
|
3981
4047
|
"locationInModule": {
|
|
3982
4048
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
3983
|
-
"line":
|
|
4049
|
+
"line": 925
|
|
3984
4050
|
},
|
|
3985
4051
|
"name": "bundledDeps",
|
|
3986
4052
|
"optional": true,
|
|
@@ -4020,7 +4086,7 @@
|
|
|
4020
4086
|
"immutable": true,
|
|
4021
4087
|
"locationInModule": {
|
|
4022
4088
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4023
|
-
"line":
|
|
4089
|
+
"line": 910
|
|
4024
4090
|
},
|
|
4025
4091
|
"name": "bunVersion",
|
|
4026
4092
|
"optional": true,
|
|
@@ -4057,7 +4123,7 @@
|
|
|
4057
4123
|
"immutable": true,
|
|
4058
4124
|
"locationInModule": {
|
|
4059
4125
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4060
|
-
"line":
|
|
4126
|
+
"line": 1075
|
|
4061
4127
|
},
|
|
4062
4128
|
"name": "clobber",
|
|
4063
4129
|
"optional": true,
|
|
@@ -4076,7 +4142,7 @@
|
|
|
4076
4142
|
"immutable": true,
|
|
4077
4143
|
"locationInModule": {
|
|
4078
4144
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4079
|
-
"line":
|
|
4145
|
+
"line": 904
|
|
4080
4146
|
},
|
|
4081
4147
|
"name": "codeArtifactOptions",
|
|
4082
4148
|
"optional": true,
|
|
@@ -4130,7 +4196,7 @@
|
|
|
4130
4196
|
"immutable": true,
|
|
4131
4197
|
"locationInModule": {
|
|
4132
4198
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4133
|
-
"line":
|
|
4199
|
+
"line": 1172
|
|
4134
4200
|
},
|
|
4135
4201
|
"name": "commitGenerated",
|
|
4136
4202
|
"optional": true,
|
|
@@ -4261,7 +4327,7 @@
|
|
|
4261
4327
|
"immutable": true,
|
|
4262
4328
|
"locationInModule": {
|
|
4263
4329
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4264
|
-
"line":
|
|
4330
|
+
"line": 897
|
|
4265
4331
|
},
|
|
4266
4332
|
"name": "deleteOrphanedLockFiles",
|
|
4267
4333
|
"optional": true,
|
|
@@ -4320,7 +4386,7 @@
|
|
|
4320
4386
|
"immutable": true,
|
|
4321
4387
|
"locationInModule": {
|
|
4322
4388
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4323
|
-
"line":
|
|
4389
|
+
"line": 887
|
|
4324
4390
|
},
|
|
4325
4391
|
"name": "deps",
|
|
4326
4392
|
"optional": true,
|
|
@@ -4383,7 +4449,7 @@
|
|
|
4383
4449
|
"immutable": true,
|
|
4384
4450
|
"locationInModule": {
|
|
4385
4451
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4386
|
-
"line":
|
|
4452
|
+
"line": 874
|
|
4387
4453
|
},
|
|
4388
4454
|
"name": "description",
|
|
4389
4455
|
"optional": true,
|
|
@@ -4401,7 +4467,7 @@
|
|
|
4401
4467
|
"immutable": true,
|
|
4402
4468
|
"locationInModule": {
|
|
4403
4469
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4404
|
-
"line":
|
|
4470
|
+
"line": 1069
|
|
4405
4471
|
},
|
|
4406
4472
|
"name": "devContainer",
|
|
4407
4473
|
"optional": true,
|
|
@@ -4423,7 +4489,7 @@
|
|
|
4423
4489
|
"immutable": true,
|
|
4424
4490
|
"locationInModule": {
|
|
4425
4491
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4426
|
-
"line":
|
|
4492
|
+
"line": 866
|
|
4427
4493
|
},
|
|
4428
4494
|
"name": "devDeps",
|
|
4429
4495
|
"optional": true,
|
|
@@ -4445,7 +4511,7 @@
|
|
|
4445
4511
|
"immutable": true,
|
|
4446
4512
|
"locationInModule": {
|
|
4447
4513
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4448
|
-
"line":
|
|
4514
|
+
"line": 849
|
|
4449
4515
|
},
|
|
4450
4516
|
"name": "devEngines",
|
|
4451
4517
|
"optional": true,
|
|
@@ -4553,7 +4619,7 @@
|
|
|
4553
4619
|
"immutable": true,
|
|
4554
4620
|
"locationInModule": {
|
|
4555
4621
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4556
|
-
"line":
|
|
4622
|
+
"line": 841
|
|
4557
4623
|
},
|
|
4558
4624
|
"name": "entrypoint",
|
|
4559
4625
|
"optional": true,
|
|
@@ -4649,7 +4715,7 @@
|
|
|
4649
4715
|
"immutable": true,
|
|
4650
4716
|
"locationInModule": {
|
|
4651
4717
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4652
|
-
"line":
|
|
4718
|
+
"line": 1063
|
|
4653
4719
|
},
|
|
4654
4720
|
"name": "github",
|
|
4655
4721
|
"optional": true,
|
|
@@ -4667,7 +4733,7 @@
|
|
|
4667
4733
|
"immutable": true,
|
|
4668
4734
|
"locationInModule": {
|
|
4669
4735
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4670
|
-
"line":
|
|
4736
|
+
"line": 1056
|
|
4671
4737
|
},
|
|
4672
4738
|
"name": "githubOptions",
|
|
4673
4739
|
"optional": true,
|
|
@@ -4706,7 +4772,7 @@
|
|
|
4706
4772
|
"immutable": true,
|
|
4707
4773
|
"locationInModule": {
|
|
4708
4774
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4709
|
-
"line":
|
|
4775
|
+
"line": 1166
|
|
4710
4776
|
},
|
|
4711
4777
|
"name": "gitIgnoreOptions",
|
|
4712
4778
|
"optional": true,
|
|
@@ -4723,7 +4789,7 @@
|
|
|
4723
4789
|
"immutable": true,
|
|
4724
4790
|
"locationInModule": {
|
|
4725
4791
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4726
|
-
"line":
|
|
4792
|
+
"line": 1161
|
|
4727
4793
|
},
|
|
4728
4794
|
"name": "gitOptions",
|
|
4729
4795
|
"optional": true,
|
|
@@ -4741,7 +4807,7 @@
|
|
|
4741
4807
|
"immutable": true,
|
|
4742
4808
|
"locationInModule": {
|
|
4743
4809
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4744
|
-
"line":
|
|
4810
|
+
"line": 1050
|
|
4745
4811
|
},
|
|
4746
4812
|
"name": "gitpod",
|
|
4747
4813
|
"optional": true,
|
|
@@ -4758,7 +4824,7 @@
|
|
|
4758
4824
|
"immutable": true,
|
|
4759
4825
|
"locationInModule": {
|
|
4760
4826
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4761
|
-
"line":
|
|
4827
|
+
"line": 834
|
|
4762
4828
|
},
|
|
4763
4829
|
"name": "homepage",
|
|
4764
4830
|
"optional": true,
|
|
@@ -4851,7 +4917,7 @@
|
|
|
4851
4917
|
"immutable": true,
|
|
4852
4918
|
"locationInModule": {
|
|
4853
4919
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4854
|
-
"line":
|
|
4920
|
+
"line": 829
|
|
4855
4921
|
},
|
|
4856
4922
|
"name": "keywords",
|
|
4857
4923
|
"optional": true,
|
|
@@ -4893,7 +4959,7 @@
|
|
|
4893
4959
|
"immutable": true,
|
|
4894
4960
|
"locationInModule": {
|
|
4895
4961
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4896
|
-
"line":
|
|
4962
|
+
"line": 824
|
|
4897
4963
|
},
|
|
4898
4964
|
"name": "license",
|
|
4899
4965
|
"optional": true,
|
|
@@ -4911,7 +4977,7 @@
|
|
|
4911
4977
|
"immutable": true,
|
|
4912
4978
|
"locationInModule": {
|
|
4913
4979
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4914
|
-
"line":
|
|
4980
|
+
"line": 816
|
|
4915
4981
|
},
|
|
4916
4982
|
"name": "licensed",
|
|
4917
4983
|
"optional": true,
|
|
@@ -4929,7 +4995,7 @@
|
|
|
4929
4995
|
"immutable": true,
|
|
4930
4996
|
"locationInModule": {
|
|
4931
4997
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4932
|
-
"line":
|
|
4998
|
+
"line": 1156
|
|
4933
4999
|
},
|
|
4934
5000
|
"name": "logging",
|
|
4935
5001
|
"optional": true,
|
|
@@ -4967,7 +5033,7 @@
|
|
|
4967
5033
|
"immutable": true,
|
|
4968
5034
|
"locationInModule": {
|
|
4969
5035
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
4970
|
-
"line":
|
|
5036
|
+
"line": 810
|
|
4971
5037
|
},
|
|
4972
5038
|
"name": "maxNodeVersion",
|
|
4973
5039
|
"optional": true,
|
|
@@ -5005,7 +5071,7 @@
|
|
|
5005
5071
|
"immutable": true,
|
|
5006
5072
|
"locationInModule": {
|
|
5007
5073
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5008
|
-
"line":
|
|
5074
|
+
"line": 799
|
|
5009
5075
|
},
|
|
5010
5076
|
"name": "minNodeVersion",
|
|
5011
5077
|
"optional": true,
|
|
@@ -5042,7 +5108,7 @@
|
|
|
5042
5108
|
"immutable": true,
|
|
5043
5109
|
"locationInModule": {
|
|
5044
5110
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5045
|
-
"line":
|
|
5111
|
+
"line": 784
|
|
5046
5112
|
},
|
|
5047
5113
|
"name": "npmAccess",
|
|
5048
5114
|
"optional": true,
|
|
@@ -5115,7 +5181,7 @@
|
|
|
5115
5181
|
"immutable": true,
|
|
5116
5182
|
"locationInModule": {
|
|
5117
5183
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5118
|
-
"line":
|
|
5184
|
+
"line": 776
|
|
5119
5185
|
},
|
|
5120
5186
|
"name": "npmProvenance",
|
|
5121
5187
|
"optional": true,
|
|
@@ -5134,7 +5200,7 @@
|
|
|
5134
5200
|
"immutable": true,
|
|
5135
5201
|
"locationInModule": {
|
|
5136
5202
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5137
|
-
"line":
|
|
5203
|
+
"line": 765
|
|
5138
5204
|
},
|
|
5139
5205
|
"name": "npmRegistryUrl",
|
|
5140
5206
|
"optional": true,
|
|
@@ -5152,7 +5218,7 @@
|
|
|
5152
5218
|
"immutable": true,
|
|
5153
5219
|
"locationInModule": {
|
|
5154
5220
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5155
|
-
"line":
|
|
5221
|
+
"line": 758
|
|
5156
5222
|
},
|
|
5157
5223
|
"name": "npmTokenSecret",
|
|
5158
5224
|
"optional": true,
|
|
@@ -5170,7 +5236,7 @@
|
|
|
5170
5236
|
"immutable": true,
|
|
5171
5237
|
"locationInModule": {
|
|
5172
5238
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5173
|
-
"line":
|
|
5239
|
+
"line": 752
|
|
5174
5240
|
},
|
|
5175
5241
|
"name": "npmTrustedPublishing",
|
|
5176
5242
|
"optional": true,
|
|
@@ -5189,7 +5255,7 @@
|
|
|
5189
5255
|
"immutable": true,
|
|
5190
5256
|
"locationInModule": {
|
|
5191
5257
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5192
|
-
"line":
|
|
5258
|
+
"line": 1150
|
|
5193
5259
|
},
|
|
5194
5260
|
"name": "outdir",
|
|
5195
5261
|
"optional": true,
|
|
@@ -5228,7 +5294,7 @@
|
|
|
5228
5294
|
"immutable": true,
|
|
5229
5295
|
"locationInModule": {
|
|
5230
5296
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5231
|
-
"line":
|
|
5297
|
+
"line": 746
|
|
5232
5298
|
},
|
|
5233
5299
|
"name": "packageManager",
|
|
5234
5300
|
"optional": true,
|
|
@@ -5249,7 +5315,7 @@
|
|
|
5249
5315
|
"immutable": true,
|
|
5250
5316
|
"locationInModule": {
|
|
5251
5317
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5252
|
-
"line":
|
|
5318
|
+
"line": 739
|
|
5253
5319
|
},
|
|
5254
5320
|
"name": "packageName",
|
|
5255
5321
|
"optional": true,
|
|
@@ -5266,7 +5332,7 @@
|
|
|
5266
5332
|
"immutable": true,
|
|
5267
5333
|
"locationInModule": {
|
|
5268
5334
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5269
|
-
"line":
|
|
5335
|
+
"line": 1139
|
|
5270
5336
|
},
|
|
5271
5337
|
"name": "parent",
|
|
5272
5338
|
"optional": true,
|
|
@@ -5283,7 +5349,7 @@
|
|
|
5283
5349
|
"immutable": true,
|
|
5284
5350
|
"locationInModule": {
|
|
5285
5351
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5286
|
-
"line":
|
|
5352
|
+
"line": 732
|
|
5287
5353
|
},
|
|
5288
5354
|
"name": "peerDependencyOptions",
|
|
5289
5355
|
"optional": true,
|
|
@@ -5302,7 +5368,7 @@
|
|
|
5302
5368
|
"immutable": true,
|
|
5303
5369
|
"locationInModule": {
|
|
5304
5370
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5305
|
-
"line":
|
|
5371
|
+
"line": 727
|
|
5306
5372
|
},
|
|
5307
5373
|
"name": "peerDeps",
|
|
5308
5374
|
"optional": true,
|
|
@@ -5315,6 +5381,24 @@
|
|
|
5315
5381
|
}
|
|
5316
5382
|
}
|
|
5317
5383
|
},
|
|
5384
|
+
{
|
|
5385
|
+
"abstract": true,
|
|
5386
|
+
"docs": {
|
|
5387
|
+
"default": "- all default options",
|
|
5388
|
+
"stability": "experimental",
|
|
5389
|
+
"summary": "Options for pnpm."
|
|
5390
|
+
},
|
|
5391
|
+
"immutable": true,
|
|
5392
|
+
"locationInModule": {
|
|
5393
|
+
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5394
|
+
"line": 708
|
|
5395
|
+
},
|
|
5396
|
+
"name": "pnpmOptions",
|
|
5397
|
+
"optional": true,
|
|
5398
|
+
"type": {
|
|
5399
|
+
"fqn": "projen.javascript.PnpmOptions"
|
|
5400
|
+
}
|
|
5401
|
+
},
|
|
5318
5402
|
{
|
|
5319
5403
|
"abstract": true,
|
|
5320
5404
|
"docs": {
|
|
@@ -5420,7 +5504,7 @@
|
|
|
5420
5504
|
"immutable": true,
|
|
5421
5505
|
"locationInModule": {
|
|
5422
5506
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5423
|
-
"line":
|
|
5507
|
+
"line": 1134
|
|
5424
5508
|
},
|
|
5425
5509
|
"name": "projectTree",
|
|
5426
5510
|
"optional": true,
|
|
@@ -5439,7 +5523,7 @@
|
|
|
5439
5523
|
"immutable": true,
|
|
5440
5524
|
"locationInModule": {
|
|
5441
5525
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5442
|
-
"line":
|
|
5526
|
+
"line": 1128
|
|
5443
5527
|
},
|
|
5444
5528
|
"name": "projenCommand",
|
|
5445
5529
|
"optional": true,
|
|
@@ -5457,7 +5541,7 @@
|
|
|
5457
5541
|
"immutable": true,
|
|
5458
5542
|
"locationInModule": {
|
|
5459
5543
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5460
|
-
"line":
|
|
5544
|
+
"line": 1044
|
|
5461
5545
|
},
|
|
5462
5546
|
"name": "projenCredentials",
|
|
5463
5547
|
"optional": true,
|
|
@@ -5511,7 +5595,7 @@
|
|
|
5511
5595
|
"immutable": true,
|
|
5512
5596
|
"locationInModule": {
|
|
5513
5597
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5514
|
-
"line":
|
|
5598
|
+
"line": 1121
|
|
5515
5599
|
},
|
|
5516
5600
|
"name": "projenrcJson",
|
|
5517
5601
|
"optional": true,
|
|
@@ -5529,7 +5613,7 @@
|
|
|
5529
5613
|
"immutable": true,
|
|
5530
5614
|
"locationInModule": {
|
|
5531
5615
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5532
|
-
"line":
|
|
5616
|
+
"line": 1115
|
|
5533
5617
|
},
|
|
5534
5618
|
"name": "projenrcJsonOptions",
|
|
5535
5619
|
"optional": true,
|
|
@@ -5770,7 +5854,7 @@
|
|
|
5770
5854
|
"immutable": true,
|
|
5771
5855
|
"locationInModule": {
|
|
5772
5856
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
5773
|
-
"line":
|
|
5857
|
+
"line": 1038
|
|
5774
5858
|
},
|
|
5775
5859
|
"name": "readme",
|
|
5776
5860
|
"optional": true,
|
|
@@ -6022,7 +6106,7 @@
|
|
|
6022
6106
|
"immutable": true,
|
|
6023
6107
|
"locationInModule": {
|
|
6024
6108
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
6025
|
-
"line":
|
|
6109
|
+
"line": 1109
|
|
6026
6110
|
},
|
|
6027
6111
|
"name": "renovatebot",
|
|
6028
6112
|
"optional": true,
|
|
@@ -6040,7 +6124,7 @@
|
|
|
6040
6124
|
"immutable": true,
|
|
6041
6125
|
"locationInModule": {
|
|
6042
6126
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
6043
|
-
"line":
|
|
6127
|
+
"line": 1103
|
|
6044
6128
|
},
|
|
6045
6129
|
"name": "renovatebotOptions",
|
|
6046
6130
|
"optional": true,
|
|
@@ -6206,7 +6290,7 @@
|
|
|
6206
6290
|
"immutable": true,
|
|
6207
6291
|
"locationInModule": {
|
|
6208
6292
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
6209
|
-
"line":
|
|
6293
|
+
"line": 1034
|
|
6210
6294
|
},
|
|
6211
6295
|
"name": "stale",
|
|
6212
6296
|
"optional": true,
|
|
@@ -6225,7 +6309,7 @@
|
|
|
6225
6309
|
"immutable": true,
|
|
6226
6310
|
"locationInModule": {
|
|
6227
6311
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
6228
|
-
"line":
|
|
6312
|
+
"line": 1027
|
|
6229
6313
|
},
|
|
6230
6314
|
"name": "staleOptions",
|
|
6231
6315
|
"optional": true,
|
|
@@ -6397,7 +6481,7 @@
|
|
|
6397
6481
|
"immutable": true,
|
|
6398
6482
|
"locationInModule": {
|
|
6399
6483
|
"filename": "src/projects/jsii/jsii-project-options.ts",
|
|
6400
|
-
"line":
|
|
6484
|
+
"line": 1020
|
|
6401
6485
|
},
|
|
6402
6486
|
"name": "vscode",
|
|
6403
6487
|
"optional": true,
|
|
@@ -6645,7 +6729,7 @@
|
|
|
6645
6729
|
"immutable": true,
|
|
6646
6730
|
"locationInModule": {
|
|
6647
6731
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6648
|
-
"line":
|
|
6732
|
+
"line": 1079
|
|
6649
6733
|
},
|
|
6650
6734
|
"name": "codeOwners",
|
|
6651
6735
|
"type": {
|
|
@@ -6670,7 +6754,7 @@
|
|
|
6670
6754
|
"immutable": true,
|
|
6671
6755
|
"locationInModule": {
|
|
6672
6756
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6673
|
-
"line":
|
|
6757
|
+
"line": 1075
|
|
6674
6758
|
},
|
|
6675
6759
|
"name": "name",
|
|
6676
6760
|
"type": {
|
|
@@ -6687,7 +6771,7 @@
|
|
|
6687
6771
|
"immutable": true,
|
|
6688
6772
|
"locationInModule": {
|
|
6689
6773
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6690
|
-
"line":
|
|
6774
|
+
"line": 909
|
|
6691
6775
|
},
|
|
6692
6776
|
"name": "addPackageManagerToDevEngines",
|
|
6693
6777
|
"optional": true,
|
|
@@ -6706,7 +6790,7 @@
|
|
|
6706
6790
|
"immutable": true,
|
|
6707
6791
|
"locationInModule": {
|
|
6708
6792
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6709
|
-
"line":
|
|
6793
|
+
"line": 903
|
|
6710
6794
|
},
|
|
6711
6795
|
"name": "allowLibraryDependencies",
|
|
6712
6796
|
"optional": true,
|
|
@@ -6714,6 +6798,30 @@
|
|
|
6714
6798
|
"primitive": "boolean"
|
|
6715
6799
|
}
|
|
6716
6800
|
},
|
|
6801
|
+
{
|
|
6802
|
+
"abstract": true,
|
|
6803
|
+
"docs": {
|
|
6804
|
+
"default": "- all install scripts are allowed to run (package manager default)",
|
|
6805
|
+
"remarks": "These scripts can execute arbitrary code, making them a common\nsupply-chain attack vector. Package managers are moving toward\nblocking them by default and requiring an explicit allowlist.\nConfiguring `allowScripts` sets up that allowlist so scripts only run\nfor the packages you have explicitly reviewed and trust.\n\nSupport for this setting depends on the configured `packageManager`:\n\n- `NPM`: written to the native `allowScripts` field in `package.json`\n (requires npm >= 11.16; see https://docs.npmjs.com/cli/v11/commands/npm-approve-scripts).\n- `BUN`: written to the native `trustedDependencies` field in\n `package.json` (see https://bun.com/docs/pm/lifecycle).\n- `PNPM`: written to the `onlyBuiltDependencies` setting in\n `pnpm-workspace.yaml` (see https://pnpm.io/settings#onlybuiltdependencies).\n- `YARN2`, `YARN_BERRY`: written to the native\n `dependenciesMeta.<pkg>.built` allowlist in `package.json`, combined\n with `enableScripts: false` in `.yarnrc.yml` (see\n https://yarnpkg.com/features/security#postinstalls). If you set\n `yarnBerryOptions.yarnRcOptions.enableScripts` explicitly, that value\n is respected instead of being overridden.\n- `YARN`, `YARN_CLASSIC`: not supported. Yarn Classic has no native\n mechanism to allowlist install scripts for specific dependencies.\n Setting this option with one of these package managers throws an\n error at synthesis time.",
|
|
6806
|
+
"stability": "experimental",
|
|
6807
|
+
"summary": "List of dependency (package) names that are allowed to run lifecycle install scripts (`preinstall`, `install`, `postinstall`, `prepare`) during dependency installation."
|
|
6808
|
+
},
|
|
6809
|
+
"immutable": true,
|
|
6810
|
+
"locationInModule": {
|
|
6811
|
+
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6812
|
+
"line": 895
|
|
6813
|
+
},
|
|
6814
|
+
"name": "allowScripts",
|
|
6815
|
+
"optional": true,
|
|
6816
|
+
"type": {
|
|
6817
|
+
"collection": {
|
|
6818
|
+
"elementtype": {
|
|
6819
|
+
"primitive": "string"
|
|
6820
|
+
},
|
|
6821
|
+
"kind": "array"
|
|
6822
|
+
}
|
|
6823
|
+
}
|
|
6824
|
+
},
|
|
6717
6825
|
{
|
|
6718
6826
|
"abstract": true,
|
|
6719
6827
|
"docs": {
|
|
@@ -6778,7 +6886,7 @@
|
|
|
6778
6886
|
"immutable": true,
|
|
6779
6887
|
"locationInModule": {
|
|
6780
6888
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6781
|
-
"line":
|
|
6889
|
+
"line": 865
|
|
6782
6890
|
},
|
|
6783
6891
|
"name": "authorEmail",
|
|
6784
6892
|
"optional": true,
|
|
@@ -6795,7 +6903,7 @@
|
|
|
6795
6903
|
"immutable": true,
|
|
6796
6904
|
"locationInModule": {
|
|
6797
6905
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6798
|
-
"line":
|
|
6906
|
+
"line": 860
|
|
6799
6907
|
},
|
|
6800
6908
|
"name": "authorName",
|
|
6801
6909
|
"optional": true,
|
|
@@ -6812,7 +6920,7 @@
|
|
|
6812
6920
|
"immutable": true,
|
|
6813
6921
|
"locationInModule": {
|
|
6814
6922
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6815
|
-
"line":
|
|
6923
|
+
"line": 855
|
|
6816
6924
|
},
|
|
6817
6925
|
"name": "authorOrganization",
|
|
6818
6926
|
"optional": true,
|
|
@@ -6829,7 +6937,7 @@
|
|
|
6829
6937
|
"immutable": true,
|
|
6830
6938
|
"locationInModule": {
|
|
6831
6939
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6832
|
-
"line":
|
|
6940
|
+
"line": 850
|
|
6833
6941
|
},
|
|
6834
6942
|
"name": "authorUrl",
|
|
6835
6943
|
"optional": true,
|
|
@@ -6847,7 +6955,7 @@
|
|
|
6847
6955
|
"immutable": true,
|
|
6848
6956
|
"locationInModule": {
|
|
6849
6957
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6850
|
-
"line":
|
|
6958
|
+
"line": 993
|
|
6851
6959
|
},
|
|
6852
6960
|
"name": "autoApproveOptions",
|
|
6853
6961
|
"optional": true,
|
|
@@ -6884,7 +6992,7 @@
|
|
|
6884
6992
|
"immutable": true,
|
|
6885
6993
|
"locationInModule": {
|
|
6886
6994
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6887
|
-
"line":
|
|
6995
|
+
"line": 845
|
|
6888
6996
|
},
|
|
6889
6997
|
"name": "autoDetectBin",
|
|
6890
6998
|
"optional": true,
|
|
@@ -6903,7 +7011,7 @@
|
|
|
6903
7011
|
"immutable": true,
|
|
6904
7012
|
"locationInModule": {
|
|
6905
7013
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6906
|
-
"line":
|
|
7014
|
+
"line": 987
|
|
6907
7015
|
},
|
|
6908
7016
|
"name": "autoMerge",
|
|
6909
7017
|
"optional": true,
|
|
@@ -6922,7 +7030,7 @@
|
|
|
6922
7030
|
"immutable": true,
|
|
6923
7031
|
"locationInModule": {
|
|
6924
7032
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6925
|
-
"line":
|
|
7033
|
+
"line": 979
|
|
6926
7034
|
},
|
|
6927
7035
|
"name": "autoMergeOptions",
|
|
6928
7036
|
"optional": true,
|
|
@@ -6940,7 +7048,7 @@
|
|
|
6940
7048
|
"immutable": true,
|
|
6941
7049
|
"locationInModule": {
|
|
6942
7050
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
6943
|
-
"line":
|
|
7051
|
+
"line": 839
|
|
6944
7052
|
},
|
|
6945
7053
|
"name": "bin",
|
|
6946
7054
|
"optional": true,
|
|
@@ -6998,7 +7106,7 @@
|
|
|
6998
7106
|
"immutable": true,
|
|
6999
7107
|
"locationInModule": {
|
|
7000
7108
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7001
|
-
"line":
|
|
7109
|
+
"line": 831
|
|
7002
7110
|
},
|
|
7003
7111
|
"name": "bugsEmail",
|
|
7004
7112
|
"optional": true,
|
|
@@ -7015,7 +7123,7 @@
|
|
|
7015
7123
|
"immutable": true,
|
|
7016
7124
|
"locationInModule": {
|
|
7017
7125
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7018
|
-
"line":
|
|
7126
|
+
"line": 826
|
|
7019
7127
|
},
|
|
7020
7128
|
"name": "bugsUrl",
|
|
7021
7129
|
"optional": true,
|
|
@@ -7087,7 +7195,7 @@
|
|
|
7087
7195
|
"immutable": true,
|
|
7088
7196
|
"locationInModule": {
|
|
7089
7197
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7090
|
-
"line":
|
|
7198
|
+
"line": 821
|
|
7091
7199
|
},
|
|
7092
7200
|
"name": "bundledDeps",
|
|
7093
7201
|
"optional": true,
|
|
@@ -7127,7 +7235,7 @@
|
|
|
7127
7235
|
"immutable": true,
|
|
7128
7236
|
"locationInModule": {
|
|
7129
7237
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7130
|
-
"line":
|
|
7238
|
+
"line": 806
|
|
7131
7239
|
},
|
|
7132
7240
|
"name": "bunVersion",
|
|
7133
7241
|
"optional": true,
|
|
@@ -7164,7 +7272,7 @@
|
|
|
7164
7272
|
"immutable": true,
|
|
7165
7273
|
"locationInModule": {
|
|
7166
7274
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7167
|
-
"line":
|
|
7275
|
+
"line": 971
|
|
7168
7276
|
},
|
|
7169
7277
|
"name": "clobber",
|
|
7170
7278
|
"optional": true,
|
|
@@ -7183,7 +7291,7 @@
|
|
|
7183
7291
|
"immutable": true,
|
|
7184
7292
|
"locationInModule": {
|
|
7185
7293
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7186
|
-
"line":
|
|
7294
|
+
"line": 800
|
|
7187
7295
|
},
|
|
7188
7296
|
"name": "codeArtifactOptions",
|
|
7189
7297
|
"optional": true,
|
|
@@ -7237,7 +7345,7 @@
|
|
|
7237
7345
|
"immutable": true,
|
|
7238
7346
|
"locationInModule": {
|
|
7239
7347
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7240
|
-
"line":
|
|
7348
|
+
"line": 1068
|
|
7241
7349
|
},
|
|
7242
7350
|
"name": "commitGenerated",
|
|
7243
7351
|
"optional": true,
|
|
@@ -7313,7 +7421,7 @@
|
|
|
7313
7421
|
"immutable": true,
|
|
7314
7422
|
"locationInModule": {
|
|
7315
7423
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7316
|
-
"line":
|
|
7424
|
+
"line": 793
|
|
7317
7425
|
},
|
|
7318
7426
|
"name": "deleteOrphanedLockFiles",
|
|
7319
7427
|
"optional": true,
|
|
@@ -7372,7 +7480,7 @@
|
|
|
7372
7480
|
"immutable": true,
|
|
7373
7481
|
"locationInModule": {
|
|
7374
7482
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7375
|
-
"line":
|
|
7483
|
+
"line": 783
|
|
7376
7484
|
},
|
|
7377
7485
|
"name": "deps",
|
|
7378
7486
|
"optional": true,
|
|
@@ -7435,7 +7543,7 @@
|
|
|
7435
7543
|
"immutable": true,
|
|
7436
7544
|
"locationInModule": {
|
|
7437
7545
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7438
|
-
"line":
|
|
7546
|
+
"line": 770
|
|
7439
7547
|
},
|
|
7440
7548
|
"name": "description",
|
|
7441
7549
|
"optional": true,
|
|
@@ -7453,7 +7561,7 @@
|
|
|
7453
7561
|
"immutable": true,
|
|
7454
7562
|
"locationInModule": {
|
|
7455
7563
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7456
|
-
"line":
|
|
7564
|
+
"line": 965
|
|
7457
7565
|
},
|
|
7458
7566
|
"name": "devContainer",
|
|
7459
7567
|
"optional": true,
|
|
@@ -7475,7 +7583,7 @@
|
|
|
7475
7583
|
"immutable": true,
|
|
7476
7584
|
"locationInModule": {
|
|
7477
7585
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7478
|
-
"line":
|
|
7586
|
+
"line": 762
|
|
7479
7587
|
},
|
|
7480
7588
|
"name": "devDeps",
|
|
7481
7589
|
"optional": true,
|
|
@@ -7497,7 +7605,7 @@
|
|
|
7497
7605
|
"immutable": true,
|
|
7498
7606
|
"locationInModule": {
|
|
7499
7607
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7500
|
-
"line":
|
|
7608
|
+
"line": 745
|
|
7501
7609
|
},
|
|
7502
7610
|
"name": "devEngines",
|
|
7503
7611
|
"optional": true,
|
|
@@ -7587,7 +7695,7 @@
|
|
|
7587
7695
|
"immutable": true,
|
|
7588
7696
|
"locationInModule": {
|
|
7589
7697
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7590
|
-
"line":
|
|
7698
|
+
"line": 737
|
|
7591
7699
|
},
|
|
7592
7700
|
"name": "entrypoint",
|
|
7593
7701
|
"optional": true,
|
|
@@ -7660,7 +7768,7 @@
|
|
|
7660
7768
|
"immutable": true,
|
|
7661
7769
|
"locationInModule": {
|
|
7662
7770
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7663
|
-
"line":
|
|
7771
|
+
"line": 959
|
|
7664
7772
|
},
|
|
7665
7773
|
"name": "github",
|
|
7666
7774
|
"optional": true,
|
|
@@ -7678,7 +7786,7 @@
|
|
|
7678
7786
|
"immutable": true,
|
|
7679
7787
|
"locationInModule": {
|
|
7680
7788
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7681
|
-
"line":
|
|
7789
|
+
"line": 952
|
|
7682
7790
|
},
|
|
7683
7791
|
"name": "githubOptions",
|
|
7684
7792
|
"optional": true,
|
|
@@ -7717,7 +7825,7 @@
|
|
|
7717
7825
|
"immutable": true,
|
|
7718
7826
|
"locationInModule": {
|
|
7719
7827
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7720
|
-
"line":
|
|
7828
|
+
"line": 1062
|
|
7721
7829
|
},
|
|
7722
7830
|
"name": "gitIgnoreOptions",
|
|
7723
7831
|
"optional": true,
|
|
@@ -7734,7 +7842,7 @@
|
|
|
7734
7842
|
"immutable": true,
|
|
7735
7843
|
"locationInModule": {
|
|
7736
7844
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7737
|
-
"line":
|
|
7845
|
+
"line": 1057
|
|
7738
7846
|
},
|
|
7739
7847
|
"name": "gitOptions",
|
|
7740
7848
|
"optional": true,
|
|
@@ -7752,7 +7860,7 @@
|
|
|
7752
7860
|
"immutable": true,
|
|
7753
7861
|
"locationInModule": {
|
|
7754
7862
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7755
|
-
"line":
|
|
7863
|
+
"line": 946
|
|
7756
7864
|
},
|
|
7757
7865
|
"name": "gitpod",
|
|
7758
7866
|
"optional": true,
|
|
@@ -7769,7 +7877,7 @@
|
|
|
7769
7877
|
"immutable": true,
|
|
7770
7878
|
"locationInModule": {
|
|
7771
7879
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7772
|
-
"line":
|
|
7880
|
+
"line": 730
|
|
7773
7881
|
},
|
|
7774
7882
|
"name": "homepage",
|
|
7775
7883
|
"optional": true,
|
|
@@ -7840,7 +7948,7 @@
|
|
|
7840
7948
|
"immutable": true,
|
|
7841
7949
|
"locationInModule": {
|
|
7842
7950
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7843
|
-
"line":
|
|
7951
|
+
"line": 725
|
|
7844
7952
|
},
|
|
7845
7953
|
"name": "keywords",
|
|
7846
7954
|
"optional": true,
|
|
@@ -7882,7 +7990,7 @@
|
|
|
7882
7990
|
"immutable": true,
|
|
7883
7991
|
"locationInModule": {
|
|
7884
7992
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7885
|
-
"line":
|
|
7993
|
+
"line": 720
|
|
7886
7994
|
},
|
|
7887
7995
|
"name": "license",
|
|
7888
7996
|
"optional": true,
|
|
@@ -7900,7 +8008,7 @@
|
|
|
7900
8008
|
"immutable": true,
|
|
7901
8009
|
"locationInModule": {
|
|
7902
8010
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7903
|
-
"line":
|
|
8011
|
+
"line": 712
|
|
7904
8012
|
},
|
|
7905
8013
|
"name": "licensed",
|
|
7906
8014
|
"optional": true,
|
|
@@ -7918,7 +8026,7 @@
|
|
|
7918
8026
|
"immutable": true,
|
|
7919
8027
|
"locationInModule": {
|
|
7920
8028
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7921
|
-
"line":
|
|
8029
|
+
"line": 1052
|
|
7922
8030
|
},
|
|
7923
8031
|
"name": "logging",
|
|
7924
8032
|
"optional": true,
|
|
@@ -7956,7 +8064,7 @@
|
|
|
7956
8064
|
"immutable": true,
|
|
7957
8065
|
"locationInModule": {
|
|
7958
8066
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7959
|
-
"line":
|
|
8067
|
+
"line": 706
|
|
7960
8068
|
},
|
|
7961
8069
|
"name": "maxNodeVersion",
|
|
7962
8070
|
"optional": true,
|
|
@@ -7994,7 +8102,7 @@
|
|
|
7994
8102
|
"immutable": true,
|
|
7995
8103
|
"locationInModule": {
|
|
7996
8104
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
7997
|
-
"line":
|
|
8105
|
+
"line": 695
|
|
7998
8106
|
},
|
|
7999
8107
|
"name": "minNodeVersion",
|
|
8000
8108
|
"optional": true,
|
|
@@ -8031,7 +8139,7 @@
|
|
|
8031
8139
|
"immutable": true,
|
|
8032
8140
|
"locationInModule": {
|
|
8033
8141
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8034
|
-
"line":
|
|
8142
|
+
"line": 680
|
|
8035
8143
|
},
|
|
8036
8144
|
"name": "npmAccess",
|
|
8037
8145
|
"optional": true,
|
|
@@ -8104,7 +8212,7 @@
|
|
|
8104
8212
|
"immutable": true,
|
|
8105
8213
|
"locationInModule": {
|
|
8106
8214
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8107
|
-
"line":
|
|
8215
|
+
"line": 672
|
|
8108
8216
|
},
|
|
8109
8217
|
"name": "npmProvenance",
|
|
8110
8218
|
"optional": true,
|
|
@@ -8123,7 +8231,7 @@
|
|
|
8123
8231
|
"immutable": true,
|
|
8124
8232
|
"locationInModule": {
|
|
8125
8233
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8126
|
-
"line":
|
|
8234
|
+
"line": 661
|
|
8127
8235
|
},
|
|
8128
8236
|
"name": "npmRegistryUrl",
|
|
8129
8237
|
"optional": true,
|
|
@@ -8141,7 +8249,7 @@
|
|
|
8141
8249
|
"immutable": true,
|
|
8142
8250
|
"locationInModule": {
|
|
8143
8251
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8144
|
-
"line":
|
|
8252
|
+
"line": 654
|
|
8145
8253
|
},
|
|
8146
8254
|
"name": "npmTokenSecret",
|
|
8147
8255
|
"optional": true,
|
|
@@ -8159,7 +8267,7 @@
|
|
|
8159
8267
|
"immutable": true,
|
|
8160
8268
|
"locationInModule": {
|
|
8161
8269
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8162
|
-
"line":
|
|
8270
|
+
"line": 648
|
|
8163
8271
|
},
|
|
8164
8272
|
"name": "npmTrustedPublishing",
|
|
8165
8273
|
"optional": true,
|
|
@@ -8178,7 +8286,7 @@
|
|
|
8178
8286
|
"immutable": true,
|
|
8179
8287
|
"locationInModule": {
|
|
8180
8288
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8181
|
-
"line":
|
|
8289
|
+
"line": 1046
|
|
8182
8290
|
},
|
|
8183
8291
|
"name": "outdir",
|
|
8184
8292
|
"optional": true,
|
|
@@ -8217,7 +8325,7 @@
|
|
|
8217
8325
|
"immutable": true,
|
|
8218
8326
|
"locationInModule": {
|
|
8219
8327
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8220
|
-
"line":
|
|
8328
|
+
"line": 642
|
|
8221
8329
|
},
|
|
8222
8330
|
"name": "packageManager",
|
|
8223
8331
|
"optional": true,
|
|
@@ -8238,7 +8346,7 @@
|
|
|
8238
8346
|
"immutable": true,
|
|
8239
8347
|
"locationInModule": {
|
|
8240
8348
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8241
|
-
"line":
|
|
8349
|
+
"line": 635
|
|
8242
8350
|
},
|
|
8243
8351
|
"name": "packageName",
|
|
8244
8352
|
"optional": true,
|
|
@@ -8255,7 +8363,7 @@
|
|
|
8255
8363
|
"immutable": true,
|
|
8256
8364
|
"locationInModule": {
|
|
8257
8365
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8258
|
-
"line":
|
|
8366
|
+
"line": 1035
|
|
8259
8367
|
},
|
|
8260
8368
|
"name": "parent",
|
|
8261
8369
|
"optional": true,
|
|
@@ -8272,7 +8380,7 @@
|
|
|
8272
8380
|
"immutable": true,
|
|
8273
8381
|
"locationInModule": {
|
|
8274
8382
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8275
|
-
"line":
|
|
8383
|
+
"line": 628
|
|
8276
8384
|
},
|
|
8277
8385
|
"name": "peerDependencyOptions",
|
|
8278
8386
|
"optional": true,
|
|
@@ -8291,7 +8399,7 @@
|
|
|
8291
8399
|
"immutable": true,
|
|
8292
8400
|
"locationInModule": {
|
|
8293
8401
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8294
|
-
"line":
|
|
8402
|
+
"line": 623
|
|
8295
8403
|
},
|
|
8296
8404
|
"name": "peerDeps",
|
|
8297
8405
|
"optional": true,
|
|
@@ -8304,6 +8412,24 @@
|
|
|
8304
8412
|
}
|
|
8305
8413
|
}
|
|
8306
8414
|
},
|
|
8415
|
+
{
|
|
8416
|
+
"abstract": true,
|
|
8417
|
+
"docs": {
|
|
8418
|
+
"default": "- all default options",
|
|
8419
|
+
"stability": "experimental",
|
|
8420
|
+
"summary": "Options for pnpm."
|
|
8421
|
+
},
|
|
8422
|
+
"immutable": true,
|
|
8423
|
+
"locationInModule": {
|
|
8424
|
+
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8425
|
+
"line": 604
|
|
8426
|
+
},
|
|
8427
|
+
"name": "pnpmOptions",
|
|
8428
|
+
"optional": true,
|
|
8429
|
+
"type": {
|
|
8430
|
+
"fqn": "projen.javascript.PnpmOptions"
|
|
8431
|
+
}
|
|
8432
|
+
},
|
|
8307
8433
|
{
|
|
8308
8434
|
"abstract": true,
|
|
8309
8435
|
"docs": {
|
|
@@ -8409,7 +8535,7 @@
|
|
|
8409
8535
|
"immutable": true,
|
|
8410
8536
|
"locationInModule": {
|
|
8411
8537
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8412
|
-
"line":
|
|
8538
|
+
"line": 1030
|
|
8413
8539
|
},
|
|
8414
8540
|
"name": "projectTree",
|
|
8415
8541
|
"optional": true,
|
|
@@ -8428,7 +8554,7 @@
|
|
|
8428
8554
|
"immutable": true,
|
|
8429
8555
|
"locationInModule": {
|
|
8430
8556
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8431
|
-
"line":
|
|
8557
|
+
"line": 1024
|
|
8432
8558
|
},
|
|
8433
8559
|
"name": "projenCommand",
|
|
8434
8560
|
"optional": true,
|
|
@@ -8446,7 +8572,7 @@
|
|
|
8446
8572
|
"immutable": true,
|
|
8447
8573
|
"locationInModule": {
|
|
8448
8574
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8449
|
-
"line":
|
|
8575
|
+
"line": 940
|
|
8450
8576
|
},
|
|
8451
8577
|
"name": "projenCredentials",
|
|
8452
8578
|
"optional": true,
|
|
@@ -8500,7 +8626,7 @@
|
|
|
8500
8626
|
"immutable": true,
|
|
8501
8627
|
"locationInModule": {
|
|
8502
8628
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8503
|
-
"line":
|
|
8629
|
+
"line": 1017
|
|
8504
8630
|
},
|
|
8505
8631
|
"name": "projenrcJson",
|
|
8506
8632
|
"optional": true,
|
|
@@ -8518,7 +8644,7 @@
|
|
|
8518
8644
|
"immutable": true,
|
|
8519
8645
|
"locationInModule": {
|
|
8520
8646
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8521
|
-
"line":
|
|
8647
|
+
"line": 1011
|
|
8522
8648
|
},
|
|
8523
8649
|
"name": "projenrcJsonOptions",
|
|
8524
8650
|
"optional": true,
|
|
@@ -8687,7 +8813,7 @@
|
|
|
8687
8813
|
"immutable": true,
|
|
8688
8814
|
"locationInModule": {
|
|
8689
8815
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8690
|
-
"line":
|
|
8816
|
+
"line": 934
|
|
8691
8817
|
},
|
|
8692
8818
|
"name": "readme",
|
|
8693
8819
|
"optional": true,
|
|
@@ -8939,7 +9065,7 @@
|
|
|
8939
9065
|
"immutable": true,
|
|
8940
9066
|
"locationInModule": {
|
|
8941
9067
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8942
|
-
"line":
|
|
9068
|
+
"line": 1005
|
|
8943
9069
|
},
|
|
8944
9070
|
"name": "renovatebot",
|
|
8945
9071
|
"optional": true,
|
|
@@ -8957,7 +9083,7 @@
|
|
|
8957
9083
|
"immutable": true,
|
|
8958
9084
|
"locationInModule": {
|
|
8959
9085
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
8960
|
-
"line":
|
|
9086
|
+
"line": 999
|
|
8961
9087
|
},
|
|
8962
9088
|
"name": "renovatebotOptions",
|
|
8963
9089
|
"optional": true,
|
|
@@ -9106,7 +9232,7 @@
|
|
|
9106
9232
|
"immutable": true,
|
|
9107
9233
|
"locationInModule": {
|
|
9108
9234
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
9109
|
-
"line":
|
|
9235
|
+
"line": 930
|
|
9110
9236
|
},
|
|
9111
9237
|
"name": "stale",
|
|
9112
9238
|
"optional": true,
|
|
@@ -9125,7 +9251,7 @@
|
|
|
9125
9251
|
"immutable": true,
|
|
9126
9252
|
"locationInModule": {
|
|
9127
9253
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
9128
|
-
"line":
|
|
9254
|
+
"line": 923
|
|
9129
9255
|
},
|
|
9130
9256
|
"name": "staleOptions",
|
|
9131
9257
|
"optional": true,
|
|
@@ -9278,7 +9404,7 @@
|
|
|
9278
9404
|
"immutable": true,
|
|
9279
9405
|
"locationInModule": {
|
|
9280
9406
|
"filename": "src/projects/npm/npm-package-options.ts",
|
|
9281
|
-
"line":
|
|
9407
|
+
"line": 916
|
|
9282
9408
|
},
|
|
9283
9409
|
"name": "vscode",
|
|
9284
9410
|
"optional": true,
|
|
@@ -10885,6 +11011,6 @@
|
|
|
10885
11011
|
"symbolId": "src/components/readme/elements/section:Section"
|
|
10886
11012
|
}
|
|
10887
11013
|
},
|
|
10888
|
-
"version": "1.2.
|
|
10889
|
-
"fingerprint": "
|
|
11014
|
+
"version": "1.2.83",
|
|
11015
|
+
"fingerprint": "F7XRnMSVC52OwZ7Bb1IpY0fxRhLFRvEPZ0RTSZGBNxw="
|
|
10890
11016
|
}
|