create-outsystems-astro 0.10.0 → 0.11.0
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/bin/cli.js +7 -2
- package/integrations/bun.lock +25 -0
- package/integrations/deno.lock +51 -4
- package/integrations/package-lock.json +118 -90
- package/integrations/package.json +5 -2
- package/integrations/pnpm-lock.yaml +70 -7
- package/integrations/tsconfig.json +2 -1
- package/integrations/twig/client.ts +34 -0
- package/integrations/twig/index.ts +185 -0
- package/integrations/twig/server.ts +54 -0
- package/integrations/yarn.lock +71 -1
- package/package.json +1 -1
- package/template/AGENTS.md +47 -0
- package/template/astro.config.mjs +4 -0
- package/template/bun.lock +17 -65
- package/template/deno.lock +36 -30
- package/template/package-lock.json +98 -201
- package/template/package.json +3 -1
- package/template/pnpm-lock.yaml +42 -0
- package/template/src/env.d.ts +6 -0
- package/template/src/framework/twig/Demo.twig +100 -0
- package/template/src/framework/twig/Store.twig +45 -0
- package/template/src/images/twig.png +0 -0
- package/template/src/pages/multi/store.astro +10 -0
- package/template/src/pages/twig/twig-demo.astro +65 -0
- package/template/src/stores/framework.ts +1 -0
- package/template/test/e2e/twig/twig-demo.spec.ts +36 -0
- package/template/test/integration/twig/Demo.test.ts +84 -0
- package/template/vitest.config.ts +9 -0
- package/template/yarn.lock +52 -5
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "islands-integrations",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "islands-integrations",
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.11.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"astro": "^6.3.7"
|
|
11
|
+
"astro": "^6.3.7",
|
|
12
|
+
"twig": "^3.0.0"
|
|
12
13
|
},
|
|
13
14
|
"devDependencies": {
|
|
14
15
|
"@eslint/compat": "^2.1.0",
|
|
15
16
|
"@eslint/js": "^9.39.4",
|
|
17
|
+
"@types/node": "^25.9.1",
|
|
18
|
+
"@types/twig": "^1.12.17",
|
|
16
19
|
"better-npm-audit": "^3.11.0",
|
|
17
20
|
"eslint": "^9.39.4",
|
|
18
21
|
"eslint-config-prettier": "^10.1.8",
|
|
@@ -130,6 +133,15 @@
|
|
|
130
133
|
"node": ">=6.0.0"
|
|
131
134
|
}
|
|
132
135
|
},
|
|
136
|
+
"node_modules/@babel/runtime": {
|
|
137
|
+
"version": "7.29.7",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
139
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
140
|
+
"license": "MIT",
|
|
141
|
+
"engines": {
|
|
142
|
+
"node": ">=6.9.0"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
133
145
|
"node_modules/@babel/types": {
|
|
134
146
|
"version": "7.29.0",
|
|
135
147
|
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
|
|
@@ -972,9 +984,6 @@
|
|
|
972
984
|
"cpu": [
|
|
973
985
|
"arm"
|
|
974
986
|
],
|
|
975
|
-
"libc": [
|
|
976
|
-
"glibc"
|
|
977
|
-
],
|
|
978
987
|
"license": "LGPL-3.0-or-later",
|
|
979
988
|
"optional": true,
|
|
980
989
|
"os": [
|
|
@@ -991,9 +1000,6 @@
|
|
|
991
1000
|
"cpu": [
|
|
992
1001
|
"arm64"
|
|
993
1002
|
],
|
|
994
|
-
"libc": [
|
|
995
|
-
"glibc"
|
|
996
|
-
],
|
|
997
1003
|
"license": "LGPL-3.0-or-later",
|
|
998
1004
|
"optional": true,
|
|
999
1005
|
"os": [
|
|
@@ -1010,9 +1016,6 @@
|
|
|
1010
1016
|
"cpu": [
|
|
1011
1017
|
"ppc64"
|
|
1012
1018
|
],
|
|
1013
|
-
"libc": [
|
|
1014
|
-
"glibc"
|
|
1015
|
-
],
|
|
1016
1019
|
"license": "LGPL-3.0-or-later",
|
|
1017
1020
|
"optional": true,
|
|
1018
1021
|
"os": [
|
|
@@ -1029,9 +1032,6 @@
|
|
|
1029
1032
|
"cpu": [
|
|
1030
1033
|
"riscv64"
|
|
1031
1034
|
],
|
|
1032
|
-
"libc": [
|
|
1033
|
-
"glibc"
|
|
1034
|
-
],
|
|
1035
1035
|
"license": "LGPL-3.0-or-later",
|
|
1036
1036
|
"optional": true,
|
|
1037
1037
|
"os": [
|
|
@@ -1048,9 +1048,6 @@
|
|
|
1048
1048
|
"cpu": [
|
|
1049
1049
|
"s390x"
|
|
1050
1050
|
],
|
|
1051
|
-
"libc": [
|
|
1052
|
-
"glibc"
|
|
1053
|
-
],
|
|
1054
1051
|
"license": "LGPL-3.0-or-later",
|
|
1055
1052
|
"optional": true,
|
|
1056
1053
|
"os": [
|
|
@@ -1067,9 +1064,6 @@
|
|
|
1067
1064
|
"cpu": [
|
|
1068
1065
|
"x64"
|
|
1069
1066
|
],
|
|
1070
|
-
"libc": [
|
|
1071
|
-
"glibc"
|
|
1072
|
-
],
|
|
1073
1067
|
"license": "LGPL-3.0-or-later",
|
|
1074
1068
|
"optional": true,
|
|
1075
1069
|
"os": [
|
|
@@ -1086,9 +1080,6 @@
|
|
|
1086
1080
|
"cpu": [
|
|
1087
1081
|
"arm64"
|
|
1088
1082
|
],
|
|
1089
|
-
"libc": [
|
|
1090
|
-
"musl"
|
|
1091
|
-
],
|
|
1092
1083
|
"license": "LGPL-3.0-or-later",
|
|
1093
1084
|
"optional": true,
|
|
1094
1085
|
"os": [
|
|
@@ -1105,9 +1096,6 @@
|
|
|
1105
1096
|
"cpu": [
|
|
1106
1097
|
"x64"
|
|
1107
1098
|
],
|
|
1108
|
-
"libc": [
|
|
1109
|
-
"musl"
|
|
1110
|
-
],
|
|
1111
1099
|
"license": "LGPL-3.0-or-later",
|
|
1112
1100
|
"optional": true,
|
|
1113
1101
|
"os": [
|
|
@@ -1124,9 +1112,6 @@
|
|
|
1124
1112
|
"cpu": [
|
|
1125
1113
|
"arm"
|
|
1126
1114
|
],
|
|
1127
|
-
"libc": [
|
|
1128
|
-
"glibc"
|
|
1129
|
-
],
|
|
1130
1115
|
"license": "Apache-2.0",
|
|
1131
1116
|
"optional": true,
|
|
1132
1117
|
"os": [
|
|
@@ -1149,9 +1134,6 @@
|
|
|
1149
1134
|
"cpu": [
|
|
1150
1135
|
"arm64"
|
|
1151
1136
|
],
|
|
1152
|
-
"libc": [
|
|
1153
|
-
"glibc"
|
|
1154
|
-
],
|
|
1155
1137
|
"license": "Apache-2.0",
|
|
1156
1138
|
"optional": true,
|
|
1157
1139
|
"os": [
|
|
@@ -1174,9 +1156,6 @@
|
|
|
1174
1156
|
"cpu": [
|
|
1175
1157
|
"ppc64"
|
|
1176
1158
|
],
|
|
1177
|
-
"libc": [
|
|
1178
|
-
"glibc"
|
|
1179
|
-
],
|
|
1180
1159
|
"license": "Apache-2.0",
|
|
1181
1160
|
"optional": true,
|
|
1182
1161
|
"os": [
|
|
@@ -1199,9 +1178,6 @@
|
|
|
1199
1178
|
"cpu": [
|
|
1200
1179
|
"riscv64"
|
|
1201
1180
|
],
|
|
1202
|
-
"libc": [
|
|
1203
|
-
"glibc"
|
|
1204
|
-
],
|
|
1205
1181
|
"license": "Apache-2.0",
|
|
1206
1182
|
"optional": true,
|
|
1207
1183
|
"os": [
|
|
@@ -1224,9 +1200,6 @@
|
|
|
1224
1200
|
"cpu": [
|
|
1225
1201
|
"s390x"
|
|
1226
1202
|
],
|
|
1227
|
-
"libc": [
|
|
1228
|
-
"glibc"
|
|
1229
|
-
],
|
|
1230
1203
|
"license": "Apache-2.0",
|
|
1231
1204
|
"optional": true,
|
|
1232
1205
|
"os": [
|
|
@@ -1249,9 +1222,6 @@
|
|
|
1249
1222
|
"cpu": [
|
|
1250
1223
|
"x64"
|
|
1251
1224
|
],
|
|
1252
|
-
"libc": [
|
|
1253
|
-
"glibc"
|
|
1254
|
-
],
|
|
1255
1225
|
"license": "Apache-2.0",
|
|
1256
1226
|
"optional": true,
|
|
1257
1227
|
"os": [
|
|
@@ -1274,9 +1244,6 @@
|
|
|
1274
1244
|
"cpu": [
|
|
1275
1245
|
"arm64"
|
|
1276
1246
|
],
|
|
1277
|
-
"libc": [
|
|
1278
|
-
"musl"
|
|
1279
|
-
],
|
|
1280
1247
|
"license": "Apache-2.0",
|
|
1281
1248
|
"optional": true,
|
|
1282
1249
|
"os": [
|
|
@@ -1299,9 +1266,6 @@
|
|
|
1299
1266
|
"cpu": [
|
|
1300
1267
|
"x64"
|
|
1301
1268
|
],
|
|
1302
|
-
"libc": [
|
|
1303
|
-
"musl"
|
|
1304
|
-
],
|
|
1305
1269
|
"license": "Apache-2.0",
|
|
1306
1270
|
"optional": true,
|
|
1307
1271
|
"os": [
|
|
@@ -1563,9 +1527,6 @@
|
|
|
1563
1527
|
"cpu": [
|
|
1564
1528
|
"arm"
|
|
1565
1529
|
],
|
|
1566
|
-
"libc": [
|
|
1567
|
-
"glibc"
|
|
1568
|
-
],
|
|
1569
1530
|
"license": "MIT",
|
|
1570
1531
|
"optional": true,
|
|
1571
1532
|
"os": [
|
|
@@ -1579,9 +1540,6 @@
|
|
|
1579
1540
|
"cpu": [
|
|
1580
1541
|
"arm"
|
|
1581
1542
|
],
|
|
1582
|
-
"libc": [
|
|
1583
|
-
"musl"
|
|
1584
|
-
],
|
|
1585
1543
|
"license": "MIT",
|
|
1586
1544
|
"optional": true,
|
|
1587
1545
|
"os": [
|
|
@@ -1595,9 +1553,6 @@
|
|
|
1595
1553
|
"cpu": [
|
|
1596
1554
|
"arm64"
|
|
1597
1555
|
],
|
|
1598
|
-
"libc": [
|
|
1599
|
-
"glibc"
|
|
1600
|
-
],
|
|
1601
1556
|
"license": "MIT",
|
|
1602
1557
|
"optional": true,
|
|
1603
1558
|
"os": [
|
|
@@ -1611,9 +1566,6 @@
|
|
|
1611
1566
|
"cpu": [
|
|
1612
1567
|
"arm64"
|
|
1613
1568
|
],
|
|
1614
|
-
"libc": [
|
|
1615
|
-
"musl"
|
|
1616
|
-
],
|
|
1617
1569
|
"license": "MIT",
|
|
1618
1570
|
"optional": true,
|
|
1619
1571
|
"os": [
|
|
@@ -1627,9 +1579,6 @@
|
|
|
1627
1579
|
"cpu": [
|
|
1628
1580
|
"loong64"
|
|
1629
1581
|
],
|
|
1630
|
-
"libc": [
|
|
1631
|
-
"glibc"
|
|
1632
|
-
],
|
|
1633
1582
|
"license": "MIT",
|
|
1634
1583
|
"optional": true,
|
|
1635
1584
|
"os": [
|
|
@@ -1643,9 +1592,6 @@
|
|
|
1643
1592
|
"cpu": [
|
|
1644
1593
|
"loong64"
|
|
1645
1594
|
],
|
|
1646
|
-
"libc": [
|
|
1647
|
-
"musl"
|
|
1648
|
-
],
|
|
1649
1595
|
"license": "MIT",
|
|
1650
1596
|
"optional": true,
|
|
1651
1597
|
"os": [
|
|
@@ -1659,9 +1605,6 @@
|
|
|
1659
1605
|
"cpu": [
|
|
1660
1606
|
"ppc64"
|
|
1661
1607
|
],
|
|
1662
|
-
"libc": [
|
|
1663
|
-
"glibc"
|
|
1664
|
-
],
|
|
1665
1608
|
"license": "MIT",
|
|
1666
1609
|
"optional": true,
|
|
1667
1610
|
"os": [
|
|
@@ -1675,9 +1618,6 @@
|
|
|
1675
1618
|
"cpu": [
|
|
1676
1619
|
"ppc64"
|
|
1677
1620
|
],
|
|
1678
|
-
"libc": [
|
|
1679
|
-
"musl"
|
|
1680
|
-
],
|
|
1681
1621
|
"license": "MIT",
|
|
1682
1622
|
"optional": true,
|
|
1683
1623
|
"os": [
|
|
@@ -1691,9 +1631,6 @@
|
|
|
1691
1631
|
"cpu": [
|
|
1692
1632
|
"riscv64"
|
|
1693
1633
|
],
|
|
1694
|
-
"libc": [
|
|
1695
|
-
"glibc"
|
|
1696
|
-
],
|
|
1697
1634
|
"license": "MIT",
|
|
1698
1635
|
"optional": true,
|
|
1699
1636
|
"os": [
|
|
@@ -1707,9 +1644,6 @@
|
|
|
1707
1644
|
"cpu": [
|
|
1708
1645
|
"riscv64"
|
|
1709
1646
|
],
|
|
1710
|
-
"libc": [
|
|
1711
|
-
"musl"
|
|
1712
|
-
],
|
|
1713
1647
|
"license": "MIT",
|
|
1714
1648
|
"optional": true,
|
|
1715
1649
|
"os": [
|
|
@@ -1723,9 +1657,6 @@
|
|
|
1723
1657
|
"cpu": [
|
|
1724
1658
|
"s390x"
|
|
1725
1659
|
],
|
|
1726
|
-
"libc": [
|
|
1727
|
-
"glibc"
|
|
1728
|
-
],
|
|
1729
1660
|
"license": "MIT",
|
|
1730
1661
|
"optional": true,
|
|
1731
1662
|
"os": [
|
|
@@ -1739,9 +1670,6 @@
|
|
|
1739
1670
|
"cpu": [
|
|
1740
1671
|
"x64"
|
|
1741
1672
|
],
|
|
1742
|
-
"libc": [
|
|
1743
|
-
"glibc"
|
|
1744
|
-
],
|
|
1745
1673
|
"license": "MIT",
|
|
1746
1674
|
"optional": true,
|
|
1747
1675
|
"os": [
|
|
@@ -1755,9 +1683,6 @@
|
|
|
1755
1683
|
"cpu": [
|
|
1756
1684
|
"x64"
|
|
1757
1685
|
],
|
|
1758
|
-
"libc": [
|
|
1759
|
-
"musl"
|
|
1760
|
-
],
|
|
1761
1686
|
"license": "MIT",
|
|
1762
1687
|
"optional": true,
|
|
1763
1688
|
"os": [
|
|
@@ -2011,6 +1936,23 @@
|
|
|
2011
1936
|
"@types/unist": "*"
|
|
2012
1937
|
}
|
|
2013
1938
|
},
|
|
1939
|
+
"node_modules/@types/node": {
|
|
1940
|
+
"version": "25.9.1",
|
|
1941
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.1.tgz",
|
|
1942
|
+
"integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==",
|
|
1943
|
+
"devOptional": true,
|
|
1944
|
+
"license": "MIT",
|
|
1945
|
+
"dependencies": {
|
|
1946
|
+
"undici-types": ">=7.24.0 <7.24.7"
|
|
1947
|
+
}
|
|
1948
|
+
},
|
|
1949
|
+
"node_modules/@types/twig": {
|
|
1950
|
+
"version": "1.12.17",
|
|
1951
|
+
"resolved": "https://registry.npmjs.org/@types/twig/-/twig-1.12.17.tgz",
|
|
1952
|
+
"integrity": "sha512-Lxcjgzt4mlDrv1xp1EdoBLPTxpjLAt9vtN3/qoblC5D6hMCYgZJOQHfaT/0gwCcAZENnKQ7Sga28DSsckPWa0g==",
|
|
1953
|
+
"dev": true,
|
|
1954
|
+
"license": "MIT"
|
|
1955
|
+
},
|
|
2014
1956
|
"node_modules/@types/unist": {
|
|
2015
1957
|
"version": "3.0.3",
|
|
2016
1958
|
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
|
@@ -4260,6 +4202,12 @@
|
|
|
4260
4202
|
"url": "https://github.com/sponsors/ljharb"
|
|
4261
4203
|
}
|
|
4262
4204
|
},
|
|
4205
|
+
"node_modules/foreachasync": {
|
|
4206
|
+
"version": "3.0.0",
|
|
4207
|
+
"resolved": "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz",
|
|
4208
|
+
"integrity": "sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==",
|
|
4209
|
+
"license": "Apache2"
|
|
4210
|
+
},
|
|
4263
4211
|
"node_modules/fsevents": {
|
|
4264
4212
|
"version": "2.3.3",
|
|
4265
4213
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
@@ -5413,6 +5361,16 @@
|
|
|
5413
5361
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5414
5362
|
}
|
|
5415
5363
|
},
|
|
5364
|
+
"node_modules/locutus": {
|
|
5365
|
+
"version": "3.0.36",
|
|
5366
|
+
"resolved": "https://registry.npmjs.org/locutus/-/locutus-3.0.36.tgz",
|
|
5367
|
+
"integrity": "sha512-ilsz33lqEd+KerV9JnSHM9EApVYOZ86/JTGKyafmWvhTFtjYauzT1WmZgdJ4JBGR3dY0N0PTfIq2uLvazw5QsQ==",
|
|
5368
|
+
"license": "MIT",
|
|
5369
|
+
"engines": {
|
|
5370
|
+
"node": ">= 22",
|
|
5371
|
+
"yarn": ">= 1"
|
|
5372
|
+
}
|
|
5373
|
+
},
|
|
5416
5374
|
"node_modules/lodash.get": {
|
|
5417
5375
|
"version": "4.4.2",
|
|
5418
5376
|
"resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
|
|
@@ -8147,6 +8105,60 @@
|
|
|
8147
8105
|
"license": "0BSD",
|
|
8148
8106
|
"optional": true
|
|
8149
8107
|
},
|
|
8108
|
+
"node_modules/twig": {
|
|
8109
|
+
"version": "3.0.0",
|
|
8110
|
+
"resolved": "https://registry.npmjs.org/twig/-/twig-3.0.0.tgz",
|
|
8111
|
+
"integrity": "sha512-cMfYLWAgdW15B7L5wmanmga113e4phQmo3rk5EFuUrQd99g7I3ncxgynS38P01m4ZXBDSdMYUTV1g3A66/Y56Q==",
|
|
8112
|
+
"license": "BSD-2-Clause",
|
|
8113
|
+
"dependencies": {
|
|
8114
|
+
"@babel/runtime": "^7.8.4",
|
|
8115
|
+
"locutus": "^3.0.9",
|
|
8116
|
+
"minimatch": "^10",
|
|
8117
|
+
"walk": "2.3.x"
|
|
8118
|
+
},
|
|
8119
|
+
"bin": {
|
|
8120
|
+
"twigjs": "bin/twigjs"
|
|
8121
|
+
},
|
|
8122
|
+
"engines": {
|
|
8123
|
+
"node": ">=22"
|
|
8124
|
+
}
|
|
8125
|
+
},
|
|
8126
|
+
"node_modules/twig/node_modules/balanced-match": {
|
|
8127
|
+
"version": "4.0.4",
|
|
8128
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
8129
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
8130
|
+
"license": "MIT",
|
|
8131
|
+
"engines": {
|
|
8132
|
+
"node": "18 || 20 || >=22"
|
|
8133
|
+
}
|
|
8134
|
+
},
|
|
8135
|
+
"node_modules/twig/node_modules/brace-expansion": {
|
|
8136
|
+
"version": "5.0.6",
|
|
8137
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
8138
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
8139
|
+
"license": "MIT",
|
|
8140
|
+
"dependencies": {
|
|
8141
|
+
"balanced-match": "^4.0.2"
|
|
8142
|
+
},
|
|
8143
|
+
"engines": {
|
|
8144
|
+
"node": "18 || 20 || >=22"
|
|
8145
|
+
}
|
|
8146
|
+
},
|
|
8147
|
+
"node_modules/twig/node_modules/minimatch": {
|
|
8148
|
+
"version": "10.2.5",
|
|
8149
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
8150
|
+
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
8151
|
+
"license": "BlueOak-1.0.0",
|
|
8152
|
+
"dependencies": {
|
|
8153
|
+
"brace-expansion": "^5.0.5"
|
|
8154
|
+
},
|
|
8155
|
+
"engines": {
|
|
8156
|
+
"node": "18 || 20 || >=22"
|
|
8157
|
+
},
|
|
8158
|
+
"funding": {
|
|
8159
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
8160
|
+
}
|
|
8161
|
+
},
|
|
8150
8162
|
"node_modules/type-check": {
|
|
8151
8163
|
"version": "0.4.0",
|
|
8152
8164
|
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
|
|
@@ -8313,6 +8325,13 @@
|
|
|
8313
8325
|
"integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==",
|
|
8314
8326
|
"license": "MIT"
|
|
8315
8327
|
},
|
|
8328
|
+
"node_modules/undici-types": {
|
|
8329
|
+
"version": "7.24.6",
|
|
8330
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
|
|
8331
|
+
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
|
|
8332
|
+
"devOptional": true,
|
|
8333
|
+
"license": "MIT"
|
|
8334
|
+
},
|
|
8316
8335
|
"node_modules/unified": {
|
|
8317
8336
|
"version": "11.0.5",
|
|
8318
8337
|
"resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
|
|
@@ -8714,6 +8733,15 @@
|
|
|
8714
8733
|
}
|
|
8715
8734
|
}
|
|
8716
8735
|
},
|
|
8736
|
+
"node_modules/walk": {
|
|
8737
|
+
"version": "2.3.15",
|
|
8738
|
+
"resolved": "https://registry.npmjs.org/walk/-/walk-2.3.15.tgz",
|
|
8739
|
+
"integrity": "sha512-4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg==",
|
|
8740
|
+
"license": "(MIT OR Apache-2.0)",
|
|
8741
|
+
"dependencies": {
|
|
8742
|
+
"foreachasync": "^3.0.0"
|
|
8743
|
+
}
|
|
8744
|
+
},
|
|
8717
8745
|
"node_modules/web-namespaces": {
|
|
8718
8746
|
"version": "2.0.1",
|
|
8719
8747
|
"resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "islands-integrations",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Integrations for OutSystems Astro Islands",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -20,11 +20,14 @@
|
|
|
20
20
|
"typecheck": "tsc --noEmit"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"astro": "^6.3.7"
|
|
23
|
+
"astro": "^6.3.7",
|
|
24
|
+
"twig": "^3.0.0"
|
|
24
25
|
},
|
|
25
26
|
"devDependencies": {
|
|
26
27
|
"@eslint/compat": "^2.1.0",
|
|
27
28
|
"@eslint/js": "^9.39.4",
|
|
29
|
+
"@types/node": "^25.9.1",
|
|
30
|
+
"@types/twig": "^1.12.17",
|
|
28
31
|
"better-npm-audit": "^3.11.0",
|
|
29
32
|
"eslint": "^9.39.4",
|
|
30
33
|
"eslint-config-prettier": "^10.1.8",
|
|
@@ -10,7 +10,10 @@ importers:
|
|
|
10
10
|
dependencies:
|
|
11
11
|
astro:
|
|
12
12
|
specifier: ^6.3.7
|
|
13
|
-
version: 6.3.7(rollup@4.60.4)
|
|
13
|
+
version: 6.3.7(@types/node@25.9.1)(rollup@4.60.4)
|
|
14
|
+
twig:
|
|
15
|
+
specifier: ^3.0.0
|
|
16
|
+
version: 3.0.0
|
|
14
17
|
devDependencies:
|
|
15
18
|
'@eslint/compat':
|
|
16
19
|
specifier: ^2.1.0
|
|
@@ -18,6 +21,12 @@ importers:
|
|
|
18
21
|
'@eslint/js':
|
|
19
22
|
specifier: ^9.39.4
|
|
20
23
|
version: 9.39.4
|
|
24
|
+
'@types/node':
|
|
25
|
+
specifier: ^25.9.1
|
|
26
|
+
version: 25.9.1
|
|
27
|
+
'@types/twig':
|
|
28
|
+
specifier: ^1.12.17
|
|
29
|
+
version: 1.12.17
|
|
21
30
|
better-npm-audit:
|
|
22
31
|
specifier: ^3.11.0
|
|
23
32
|
version: 3.11.0
|
|
@@ -84,6 +93,10 @@ packages:
|
|
|
84
93
|
engines: {node: '>=6.0.0'}
|
|
85
94
|
hasBin: true
|
|
86
95
|
|
|
96
|
+
'@babel/runtime@7.29.2':
|
|
97
|
+
resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
|
|
98
|
+
engines: {node: '>=6.9.0'}
|
|
99
|
+
|
|
87
100
|
'@babel/types@7.29.0':
|
|
88
101
|
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
|
|
89
102
|
engines: {node: '>=6.9.0'}
|
|
@@ -713,6 +726,12 @@ packages:
|
|
|
713
726
|
'@types/nlcst@2.0.3':
|
|
714
727
|
resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==}
|
|
715
728
|
|
|
729
|
+
'@types/node@25.9.1':
|
|
730
|
+
resolution: {integrity: sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==}
|
|
731
|
+
|
|
732
|
+
'@types/twig@1.12.17':
|
|
733
|
+
resolution: {integrity: sha512-Lxcjgzt4mlDrv1xp1EdoBLPTxpjLAt9vtN3/qoblC5D6hMCYgZJOQHfaT/0gwCcAZENnKQ7Sga28DSsckPWa0g==}
|
|
734
|
+
|
|
716
735
|
'@types/unist@3.0.3':
|
|
717
736
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
718
737
|
|
|
@@ -1345,6 +1364,9 @@ packages:
|
|
|
1345
1364
|
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
|
|
1346
1365
|
engines: {node: '>= 0.4'}
|
|
1347
1366
|
|
|
1367
|
+
foreachasync@3.0.0:
|
|
1368
|
+
resolution: {integrity: sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==}
|
|
1369
|
+
|
|
1348
1370
|
fsevents@2.3.3:
|
|
1349
1371
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1350
1372
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
@@ -1670,6 +1692,10 @@ packages:
|
|
|
1670
1692
|
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1671
1693
|
engines: {node: '>=10'}
|
|
1672
1694
|
|
|
1695
|
+
locutus@3.0.36:
|
|
1696
|
+
resolution: {integrity: sha512-ilsz33lqEd+KerV9JnSHM9EApVYOZ86/JTGKyafmWvhTFtjYauzT1WmZgdJ4JBGR3dY0N0PTfIq2uLvazw5QsQ==}
|
|
1697
|
+
engines: {node: '>= 22', yarn: '>= 1'}
|
|
1698
|
+
|
|
1673
1699
|
lodash.get@4.4.2:
|
|
1674
1700
|
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
|
|
1675
1701
|
deprecated: This package is deprecated. Use the optional chaining (?.) operator instead.
|
|
@@ -2306,6 +2332,11 @@ packages:
|
|
|
2306
2332
|
tslib@2.8.1:
|
|
2307
2333
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
2308
2334
|
|
|
2335
|
+
twig@3.0.0:
|
|
2336
|
+
resolution: {integrity: sha512-cMfYLWAgdW15B7L5wmanmga113e4phQmo3rk5EFuUrQd99g7I3ncxgynS38P01m4ZXBDSdMYUTV1g3A66/Y56Q==}
|
|
2337
|
+
engines: {node: '>=22'}
|
|
2338
|
+
hasBin: true
|
|
2339
|
+
|
|
2309
2340
|
type-check@0.4.0:
|
|
2310
2341
|
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
2311
2342
|
engines: {node: '>= 0.8.0'}
|
|
@@ -2351,6 +2382,9 @@ packages:
|
|
|
2351
2382
|
uncrypto@0.1.3:
|
|
2352
2383
|
resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
|
|
2353
2384
|
|
|
2385
|
+
undici-types@7.24.6:
|
|
2386
|
+
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
|
|
2387
|
+
|
|
2354
2388
|
unified@11.0.5:
|
|
2355
2389
|
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
|
|
2356
2390
|
|
|
@@ -2509,6 +2543,9 @@ packages:
|
|
|
2509
2543
|
vite:
|
|
2510
2544
|
optional: true
|
|
2511
2545
|
|
|
2546
|
+
walk@2.3.15:
|
|
2547
|
+
resolution: {integrity: sha512-4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg==}
|
|
2548
|
+
|
|
2512
2549
|
web-namespaces@2.0.1:
|
|
2513
2550
|
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
|
|
2514
2551
|
|
|
@@ -2618,6 +2655,8 @@ snapshots:
|
|
|
2618
2655
|
dependencies:
|
|
2619
2656
|
'@babel/types': 7.29.0
|
|
2620
2657
|
|
|
2658
|
+
'@babel/runtime@7.29.2': {}
|
|
2659
|
+
|
|
2621
2660
|
'@babel/types@7.29.0':
|
|
2622
2661
|
dependencies:
|
|
2623
2662
|
'@babel/helper-string-parser': 7.27.1
|
|
@@ -3060,6 +3099,12 @@ snapshots:
|
|
|
3060
3099
|
dependencies:
|
|
3061
3100
|
'@types/unist': 3.0.3
|
|
3062
3101
|
|
|
3102
|
+
'@types/node@25.9.1':
|
|
3103
|
+
dependencies:
|
|
3104
|
+
undici-types: 7.24.6
|
|
3105
|
+
|
|
3106
|
+
'@types/twig@1.12.17': {}
|
|
3107
|
+
|
|
3063
3108
|
'@types/unist@3.0.3': {}
|
|
3064
3109
|
|
|
3065
3110
|
'@typescript-eslint/eslint-plugin@8.59.4(@typescript-eslint/parser@8.59.4(eslint@9.39.4)(typescript@5.9.3))(eslint@9.39.4)(typescript@5.9.3)':
|
|
@@ -3261,7 +3306,7 @@ snapshots:
|
|
|
3261
3306
|
transitivePeerDependencies:
|
|
3262
3307
|
- supports-color
|
|
3263
3308
|
|
|
3264
|
-
astro@6.3.7(rollup@4.60.4):
|
|
3309
|
+
astro@6.3.7(@types/node@25.9.1)(rollup@4.60.4):
|
|
3265
3310
|
dependencies:
|
|
3266
3311
|
'@astrojs/compiler': 4.0.0
|
|
3267
3312
|
'@astrojs/internal-helpers': 0.9.1
|
|
@@ -3313,8 +3358,8 @@ snapshots:
|
|
|
3313
3358
|
unist-util-visit: 5.1.0
|
|
3314
3359
|
unstorage: 1.17.5
|
|
3315
3360
|
vfile: 6.0.3
|
|
3316
|
-
vite: 7.3.3
|
|
3317
|
-
vitefu: 1.1.3(vite@7.3.3)
|
|
3361
|
+
vite: 7.3.3(@types/node@25.9.1)
|
|
3362
|
+
vitefu: 1.1.3(vite@7.3.3(@types/node@25.9.1))
|
|
3318
3363
|
xxhash-wasm: 1.1.0
|
|
3319
3364
|
yargs-parser: 22.0.0
|
|
3320
3365
|
zod: 4.4.3
|
|
@@ -3931,6 +3976,8 @@ snapshots:
|
|
|
3931
3976
|
dependencies:
|
|
3932
3977
|
is-callable: 1.2.7
|
|
3933
3978
|
|
|
3979
|
+
foreachasync@3.0.0: {}
|
|
3980
|
+
|
|
3934
3981
|
fsevents@2.3.3:
|
|
3935
3982
|
optional: true
|
|
3936
3983
|
|
|
@@ -4305,6 +4352,8 @@ snapshots:
|
|
|
4305
4352
|
dependencies:
|
|
4306
4353
|
p-locate: 5.0.0
|
|
4307
4354
|
|
|
4355
|
+
locutus@3.0.36: {}
|
|
4356
|
+
|
|
4308
4357
|
lodash.get@4.4.2: {}
|
|
4309
4358
|
|
|
4310
4359
|
lodash.merge@4.6.2: {}
|
|
@@ -5267,6 +5316,13 @@ snapshots:
|
|
|
5267
5316
|
tslib@2.8.1:
|
|
5268
5317
|
optional: true
|
|
5269
5318
|
|
|
5319
|
+
twig@3.0.0:
|
|
5320
|
+
dependencies:
|
|
5321
|
+
'@babel/runtime': 7.29.2
|
|
5322
|
+
locutus: 3.0.36
|
|
5323
|
+
minimatch: 10.2.5
|
|
5324
|
+
walk: 2.3.15
|
|
5325
|
+
|
|
5270
5326
|
type-check@0.4.0:
|
|
5271
5327
|
dependencies:
|
|
5272
5328
|
prelude-ls: 1.2.1
|
|
@@ -5330,6 +5386,8 @@ snapshots:
|
|
|
5330
5386
|
|
|
5331
5387
|
uncrypto@0.1.3: {}
|
|
5332
5388
|
|
|
5389
|
+
undici-types@7.24.6: {}
|
|
5390
|
+
|
|
5333
5391
|
unified@11.0.5:
|
|
5334
5392
|
dependencies:
|
|
5335
5393
|
'@types/unist': 3.0.3
|
|
@@ -5420,7 +5478,7 @@ snapshots:
|
|
|
5420
5478
|
'@types/unist': 3.0.3
|
|
5421
5479
|
vfile-message: 4.0.3
|
|
5422
5480
|
|
|
5423
|
-
vite@7.3.3:
|
|
5481
|
+
vite@7.3.3(@types/node@25.9.1):
|
|
5424
5482
|
dependencies:
|
|
5425
5483
|
esbuild: 0.27.7
|
|
5426
5484
|
fdir: 6.5.0(picomatch@4.0.4)
|
|
@@ -5429,11 +5487,16 @@ snapshots:
|
|
|
5429
5487
|
rollup: 4.60.4
|
|
5430
5488
|
tinyglobby: 0.2.16
|
|
5431
5489
|
optionalDependencies:
|
|
5490
|
+
'@types/node': 25.9.1
|
|
5432
5491
|
fsevents: 2.3.3
|
|
5433
5492
|
|
|
5434
|
-
vitefu@1.1.3(vite@7.3.3):
|
|
5493
|
+
vitefu@1.1.3(vite@7.3.3(@types/node@25.9.1)):
|
|
5435
5494
|
optionalDependencies:
|
|
5436
|
-
vite: 7.3.3
|
|
5495
|
+
vite: 7.3.3(@types/node@25.9.1)
|
|
5496
|
+
|
|
5497
|
+
walk@2.3.15:
|
|
5498
|
+
dependencies:
|
|
5499
|
+
foreachasync: 3.0.0
|
|
5437
5500
|
|
|
5438
5501
|
web-namespaces@2.0.1: {}
|
|
5439
5502
|
|