more-compute 0.4.4__py3-none-any.whl → 0.5.0__py3-none-any.whl
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.
- frontend/app/globals.css +734 -27
- frontend/app/layout.tsx +13 -3
- frontend/components/Notebook.tsx +2 -14
- frontend/components/cell/MonacoCell.tsx +99 -5
- frontend/components/layout/Sidebar.tsx +39 -4
- frontend/components/panels/ClaudePanel.tsx +461 -0
- frontend/components/popups/ComputePopup.tsx +738 -447
- frontend/components/popups/FilterPopup.tsx +305 -189
- frontend/components/popups/MetricsPopup.tsx +20 -1
- frontend/components/popups/ProviderConfigModal.tsx +322 -0
- frontend/components/popups/ProviderDropdown.tsx +398 -0
- frontend/components/popups/SettingsPopup.tsx +1 -1
- frontend/contexts/ClaudeContext.tsx +392 -0
- frontend/contexts/PodWebSocketContext.tsx +16 -21
- frontend/hooks/useInlineDiff.ts +269 -0
- frontend/lib/api.ts +323 -12
- frontend/lib/settings.ts +5 -0
- frontend/lib/websocket-native.ts +4 -8
- frontend/lib/websocket.ts +1 -2
- frontend/package-lock.json +733 -36
- frontend/package.json +2 -0
- frontend/public/assets/icons/providers/lambda_labs.svg +22 -0
- frontend/public/assets/icons/providers/prime_intellect.svg +18 -0
- frontend/public/assets/icons/providers/runpod.svg +9 -0
- frontend/public/assets/icons/providers/vastai.svg +1 -0
- frontend/settings.md +54 -0
- frontend/tsconfig.tsbuildinfo +1 -0
- frontend/types/claude.ts +194 -0
- kernel_run.py +13 -0
- {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/METADATA +53 -11
- {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/RECORD +56 -37
- {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/WHEEL +1 -1
- morecompute/__init__.py +1 -1
- morecompute/__version__.py +1 -1
- morecompute/execution/executor.py +24 -67
- morecompute/execution/worker.py +6 -72
- morecompute/models/api_models.py +62 -0
- morecompute/notebook.py +11 -0
- morecompute/server.py +641 -133
- morecompute/services/claude_service.py +392 -0
- morecompute/services/pod_manager.py +168 -67
- morecompute/services/pod_monitor.py +67 -39
- morecompute/services/prime_intellect.py +0 -4
- morecompute/services/providers/__init__.py +92 -0
- morecompute/services/providers/base_provider.py +336 -0
- morecompute/services/providers/lambda_labs_provider.py +394 -0
- morecompute/services/providers/provider_factory.py +194 -0
- morecompute/services/providers/runpod_provider.py +504 -0
- morecompute/services/providers/vastai_provider.py +407 -0
- morecompute/utils/cell_magics.py +0 -3
- morecompute/utils/config_util.py +93 -3
- morecompute/utils/special_commands.py +5 -32
- morecompute/utils/version_check.py +117 -0
- frontend/styling_README.md +0 -23
- {more_compute-0.4.4.dist-info/licenses → more_compute-0.5.0.dist-info}/LICENSE +0 -0
- {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/entry_points.txt +0 -0
- {more_compute-0.4.4.dist-info → more_compute-0.5.0.dist-info}/top_level.txt +0 -0
frontend/package-lock.json
CHANGED
|
@@ -15,10 +15,12 @@
|
|
|
15
15
|
"@hugeicons/react": "^1.1.1",
|
|
16
16
|
"@monaco-editor/react": "^4.7.0",
|
|
17
17
|
"@radix-ui/react-icons": "^1.3.2",
|
|
18
|
+
"@types/diff": "^7.0.2",
|
|
18
19
|
"@types/socket.io-client": "^1.4.36",
|
|
19
20
|
"@uiw/react-codemirror": "^4.25.2",
|
|
20
21
|
"axios": "^1.12.2",
|
|
21
22
|
"codemirror": "^5.65.2",
|
|
23
|
+
"diff": "^8.0.3",
|
|
22
24
|
"framer-motion": "^12.23.22",
|
|
23
25
|
"lucide-react": "^0.544.0",
|
|
24
26
|
"monaco-editor": "^0.54.0",
|
|
@@ -1693,6 +1695,39 @@
|
|
|
1693
1695
|
"@codingame/monaco-vscode-view-title-bar-service-override": "22.1.0"
|
|
1694
1696
|
}
|
|
1695
1697
|
},
|
|
1698
|
+
"node_modules/@emnapi/core": {
|
|
1699
|
+
"version": "1.8.1",
|
|
1700
|
+
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz",
|
|
1701
|
+
"integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
|
|
1702
|
+
"dev": true,
|
|
1703
|
+
"license": "MIT",
|
|
1704
|
+
"optional": true,
|
|
1705
|
+
"dependencies": {
|
|
1706
|
+
"@emnapi/wasi-threads": "1.1.0",
|
|
1707
|
+
"tslib": "^2.4.0"
|
|
1708
|
+
}
|
|
1709
|
+
},
|
|
1710
|
+
"node_modules/@emnapi/runtime": {
|
|
1711
|
+
"version": "1.8.1",
|
|
1712
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
|
|
1713
|
+
"integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
|
|
1714
|
+
"license": "MIT",
|
|
1715
|
+
"optional": true,
|
|
1716
|
+
"dependencies": {
|
|
1717
|
+
"tslib": "^2.4.0"
|
|
1718
|
+
}
|
|
1719
|
+
},
|
|
1720
|
+
"node_modules/@emnapi/wasi-threads": {
|
|
1721
|
+
"version": "1.1.0",
|
|
1722
|
+
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz",
|
|
1723
|
+
"integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==",
|
|
1724
|
+
"dev": true,
|
|
1725
|
+
"license": "MIT",
|
|
1726
|
+
"optional": true,
|
|
1727
|
+
"dependencies": {
|
|
1728
|
+
"tslib": "^2.4.0"
|
|
1729
|
+
}
|
|
1730
|
+
},
|
|
1696
1731
|
"node_modules/@eslint-community/eslint-utils": {
|
|
1697
1732
|
"version": "4.9.0",
|
|
1698
1733
|
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz",
|
|
@@ -1897,54 +1932,434 @@
|
|
|
1897
1932
|
"node": ">=18.18"
|
|
1898
1933
|
},
|
|
1899
1934
|
"funding": {
|
|
1900
|
-
"type": "github",
|
|
1901
|
-
"url": "https://github.com/sponsors/nzakas"
|
|
1935
|
+
"type": "github",
|
|
1936
|
+
"url": "https://github.com/sponsors/nzakas"
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1939
|
+
"node_modules/@img/colour": {
|
|
1940
|
+
"version": "1.0.0",
|
|
1941
|
+
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
|
|
1942
|
+
"integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
|
|
1943
|
+
"license": "MIT",
|
|
1944
|
+
"optional": true,
|
|
1945
|
+
"engines": {
|
|
1946
|
+
"node": ">=18"
|
|
1947
|
+
}
|
|
1948
|
+
},
|
|
1949
|
+
"node_modules/@img/sharp-darwin-arm64": {
|
|
1950
|
+
"version": "0.34.4",
|
|
1951
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.4.tgz",
|
|
1952
|
+
"integrity": "sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==",
|
|
1953
|
+
"cpu": [
|
|
1954
|
+
"arm64"
|
|
1955
|
+
],
|
|
1956
|
+
"license": "Apache-2.0",
|
|
1957
|
+
"optional": true,
|
|
1958
|
+
"os": [
|
|
1959
|
+
"darwin"
|
|
1960
|
+
],
|
|
1961
|
+
"engines": {
|
|
1962
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1963
|
+
},
|
|
1964
|
+
"funding": {
|
|
1965
|
+
"url": "https://opencollective.com/libvips"
|
|
1966
|
+
},
|
|
1967
|
+
"optionalDependencies": {
|
|
1968
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.3"
|
|
1969
|
+
}
|
|
1970
|
+
},
|
|
1971
|
+
"node_modules/@img/sharp-darwin-x64": {
|
|
1972
|
+
"version": "0.34.4",
|
|
1973
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.4.tgz",
|
|
1974
|
+
"integrity": "sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==",
|
|
1975
|
+
"cpu": [
|
|
1976
|
+
"x64"
|
|
1977
|
+
],
|
|
1978
|
+
"license": "Apache-2.0",
|
|
1979
|
+
"optional": true,
|
|
1980
|
+
"os": [
|
|
1981
|
+
"darwin"
|
|
1982
|
+
],
|
|
1983
|
+
"engines": {
|
|
1984
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1985
|
+
},
|
|
1986
|
+
"funding": {
|
|
1987
|
+
"url": "https://opencollective.com/libvips"
|
|
1988
|
+
},
|
|
1989
|
+
"optionalDependencies": {
|
|
1990
|
+
"@img/sharp-libvips-darwin-x64": "1.2.3"
|
|
1991
|
+
}
|
|
1992
|
+
},
|
|
1993
|
+
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
1994
|
+
"version": "1.2.3",
|
|
1995
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.3.tgz",
|
|
1996
|
+
"integrity": "sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==",
|
|
1997
|
+
"cpu": [
|
|
1998
|
+
"arm64"
|
|
1999
|
+
],
|
|
2000
|
+
"license": "LGPL-3.0-or-later",
|
|
2001
|
+
"optional": true,
|
|
2002
|
+
"os": [
|
|
2003
|
+
"darwin"
|
|
2004
|
+
],
|
|
2005
|
+
"funding": {
|
|
2006
|
+
"url": "https://opencollective.com/libvips"
|
|
2007
|
+
}
|
|
2008
|
+
},
|
|
2009
|
+
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
2010
|
+
"version": "1.2.3",
|
|
2011
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.3.tgz",
|
|
2012
|
+
"integrity": "sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==",
|
|
2013
|
+
"cpu": [
|
|
2014
|
+
"x64"
|
|
2015
|
+
],
|
|
2016
|
+
"license": "LGPL-3.0-or-later",
|
|
2017
|
+
"optional": true,
|
|
2018
|
+
"os": [
|
|
2019
|
+
"darwin"
|
|
2020
|
+
],
|
|
2021
|
+
"funding": {
|
|
2022
|
+
"url": "https://opencollective.com/libvips"
|
|
2023
|
+
}
|
|
2024
|
+
},
|
|
2025
|
+
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
2026
|
+
"version": "1.2.3",
|
|
2027
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.3.tgz",
|
|
2028
|
+
"integrity": "sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==",
|
|
2029
|
+
"cpu": [
|
|
2030
|
+
"arm"
|
|
2031
|
+
],
|
|
2032
|
+
"license": "LGPL-3.0-or-later",
|
|
2033
|
+
"optional": true,
|
|
2034
|
+
"os": [
|
|
2035
|
+
"linux"
|
|
2036
|
+
],
|
|
2037
|
+
"funding": {
|
|
2038
|
+
"url": "https://opencollective.com/libvips"
|
|
2039
|
+
}
|
|
2040
|
+
},
|
|
2041
|
+
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
2042
|
+
"version": "1.2.3",
|
|
2043
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.3.tgz",
|
|
2044
|
+
"integrity": "sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==",
|
|
2045
|
+
"cpu": [
|
|
2046
|
+
"arm64"
|
|
2047
|
+
],
|
|
2048
|
+
"license": "LGPL-3.0-or-later",
|
|
2049
|
+
"optional": true,
|
|
2050
|
+
"os": [
|
|
2051
|
+
"linux"
|
|
2052
|
+
],
|
|
2053
|
+
"funding": {
|
|
2054
|
+
"url": "https://opencollective.com/libvips"
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
2057
|
+
"node_modules/@img/sharp-libvips-linux-ppc64": {
|
|
2058
|
+
"version": "1.2.3",
|
|
2059
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.3.tgz",
|
|
2060
|
+
"integrity": "sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==",
|
|
2061
|
+
"cpu": [
|
|
2062
|
+
"ppc64"
|
|
2063
|
+
],
|
|
2064
|
+
"license": "LGPL-3.0-or-later",
|
|
2065
|
+
"optional": true,
|
|
2066
|
+
"os": [
|
|
2067
|
+
"linux"
|
|
2068
|
+
],
|
|
2069
|
+
"funding": {
|
|
2070
|
+
"url": "https://opencollective.com/libvips"
|
|
2071
|
+
}
|
|
2072
|
+
},
|
|
2073
|
+
"node_modules/@img/sharp-libvips-linux-s390x": {
|
|
2074
|
+
"version": "1.2.3",
|
|
2075
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.3.tgz",
|
|
2076
|
+
"integrity": "sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==",
|
|
2077
|
+
"cpu": [
|
|
2078
|
+
"s390x"
|
|
2079
|
+
],
|
|
2080
|
+
"license": "LGPL-3.0-or-later",
|
|
2081
|
+
"optional": true,
|
|
2082
|
+
"os": [
|
|
2083
|
+
"linux"
|
|
2084
|
+
],
|
|
2085
|
+
"funding": {
|
|
2086
|
+
"url": "https://opencollective.com/libvips"
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"node_modules/@img/sharp-libvips-linux-x64": {
|
|
2090
|
+
"version": "1.2.3",
|
|
2091
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.3.tgz",
|
|
2092
|
+
"integrity": "sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==",
|
|
2093
|
+
"cpu": [
|
|
2094
|
+
"x64"
|
|
2095
|
+
],
|
|
2096
|
+
"license": "LGPL-3.0-or-later",
|
|
2097
|
+
"optional": true,
|
|
2098
|
+
"os": [
|
|
2099
|
+
"linux"
|
|
2100
|
+
],
|
|
2101
|
+
"funding": {
|
|
2102
|
+
"url": "https://opencollective.com/libvips"
|
|
2103
|
+
}
|
|
2104
|
+
},
|
|
2105
|
+
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
|
2106
|
+
"version": "1.2.3",
|
|
2107
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.3.tgz",
|
|
2108
|
+
"integrity": "sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==",
|
|
2109
|
+
"cpu": [
|
|
2110
|
+
"arm64"
|
|
2111
|
+
],
|
|
2112
|
+
"license": "LGPL-3.0-or-later",
|
|
2113
|
+
"optional": true,
|
|
2114
|
+
"os": [
|
|
2115
|
+
"linux"
|
|
2116
|
+
],
|
|
2117
|
+
"funding": {
|
|
2118
|
+
"url": "https://opencollective.com/libvips"
|
|
2119
|
+
}
|
|
2120
|
+
},
|
|
2121
|
+
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
2122
|
+
"version": "1.2.3",
|
|
2123
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.3.tgz",
|
|
2124
|
+
"integrity": "sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==",
|
|
2125
|
+
"cpu": [
|
|
2126
|
+
"x64"
|
|
2127
|
+
],
|
|
2128
|
+
"license": "LGPL-3.0-or-later",
|
|
2129
|
+
"optional": true,
|
|
2130
|
+
"os": [
|
|
2131
|
+
"linux"
|
|
2132
|
+
],
|
|
2133
|
+
"funding": {
|
|
2134
|
+
"url": "https://opencollective.com/libvips"
|
|
2135
|
+
}
|
|
2136
|
+
},
|
|
2137
|
+
"node_modules/@img/sharp-linux-arm": {
|
|
2138
|
+
"version": "0.34.4",
|
|
2139
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.4.tgz",
|
|
2140
|
+
"integrity": "sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==",
|
|
2141
|
+
"cpu": [
|
|
2142
|
+
"arm"
|
|
2143
|
+
],
|
|
2144
|
+
"license": "Apache-2.0",
|
|
2145
|
+
"optional": true,
|
|
2146
|
+
"os": [
|
|
2147
|
+
"linux"
|
|
2148
|
+
],
|
|
2149
|
+
"engines": {
|
|
2150
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2151
|
+
},
|
|
2152
|
+
"funding": {
|
|
2153
|
+
"url": "https://opencollective.com/libvips"
|
|
2154
|
+
},
|
|
2155
|
+
"optionalDependencies": {
|
|
2156
|
+
"@img/sharp-libvips-linux-arm": "1.2.3"
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
"node_modules/@img/sharp-linux-arm64": {
|
|
2160
|
+
"version": "0.34.4",
|
|
2161
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.4.tgz",
|
|
2162
|
+
"integrity": "sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==",
|
|
2163
|
+
"cpu": [
|
|
2164
|
+
"arm64"
|
|
2165
|
+
],
|
|
2166
|
+
"license": "Apache-2.0",
|
|
2167
|
+
"optional": true,
|
|
2168
|
+
"os": [
|
|
2169
|
+
"linux"
|
|
2170
|
+
],
|
|
2171
|
+
"engines": {
|
|
2172
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2173
|
+
},
|
|
2174
|
+
"funding": {
|
|
2175
|
+
"url": "https://opencollective.com/libvips"
|
|
2176
|
+
},
|
|
2177
|
+
"optionalDependencies": {
|
|
2178
|
+
"@img/sharp-libvips-linux-arm64": "1.2.3"
|
|
2179
|
+
}
|
|
2180
|
+
},
|
|
2181
|
+
"node_modules/@img/sharp-linux-ppc64": {
|
|
2182
|
+
"version": "0.34.4",
|
|
2183
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.4.tgz",
|
|
2184
|
+
"integrity": "sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==",
|
|
2185
|
+
"cpu": [
|
|
2186
|
+
"ppc64"
|
|
2187
|
+
],
|
|
2188
|
+
"license": "Apache-2.0",
|
|
2189
|
+
"optional": true,
|
|
2190
|
+
"os": [
|
|
2191
|
+
"linux"
|
|
2192
|
+
],
|
|
2193
|
+
"engines": {
|
|
2194
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2195
|
+
},
|
|
2196
|
+
"funding": {
|
|
2197
|
+
"url": "https://opencollective.com/libvips"
|
|
2198
|
+
},
|
|
2199
|
+
"optionalDependencies": {
|
|
2200
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.3"
|
|
2201
|
+
}
|
|
2202
|
+
},
|
|
2203
|
+
"node_modules/@img/sharp-linux-s390x": {
|
|
2204
|
+
"version": "0.34.4",
|
|
2205
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.4.tgz",
|
|
2206
|
+
"integrity": "sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==",
|
|
2207
|
+
"cpu": [
|
|
2208
|
+
"s390x"
|
|
2209
|
+
],
|
|
2210
|
+
"license": "Apache-2.0",
|
|
2211
|
+
"optional": true,
|
|
2212
|
+
"os": [
|
|
2213
|
+
"linux"
|
|
2214
|
+
],
|
|
2215
|
+
"engines": {
|
|
2216
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2217
|
+
},
|
|
2218
|
+
"funding": {
|
|
2219
|
+
"url": "https://opencollective.com/libvips"
|
|
2220
|
+
},
|
|
2221
|
+
"optionalDependencies": {
|
|
2222
|
+
"@img/sharp-libvips-linux-s390x": "1.2.3"
|
|
2223
|
+
}
|
|
2224
|
+
},
|
|
2225
|
+
"node_modules/@img/sharp-linux-x64": {
|
|
2226
|
+
"version": "0.34.4",
|
|
2227
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.4.tgz",
|
|
2228
|
+
"integrity": "sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==",
|
|
2229
|
+
"cpu": [
|
|
2230
|
+
"x64"
|
|
2231
|
+
],
|
|
2232
|
+
"license": "Apache-2.0",
|
|
2233
|
+
"optional": true,
|
|
2234
|
+
"os": [
|
|
2235
|
+
"linux"
|
|
2236
|
+
],
|
|
2237
|
+
"engines": {
|
|
2238
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2239
|
+
},
|
|
2240
|
+
"funding": {
|
|
2241
|
+
"url": "https://opencollective.com/libvips"
|
|
2242
|
+
},
|
|
2243
|
+
"optionalDependencies": {
|
|
2244
|
+
"@img/sharp-libvips-linux-x64": "1.2.3"
|
|
2245
|
+
}
|
|
2246
|
+
},
|
|
2247
|
+
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
2248
|
+
"version": "0.34.4",
|
|
2249
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.4.tgz",
|
|
2250
|
+
"integrity": "sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==",
|
|
2251
|
+
"cpu": [
|
|
2252
|
+
"arm64"
|
|
2253
|
+
],
|
|
2254
|
+
"license": "Apache-2.0",
|
|
2255
|
+
"optional": true,
|
|
2256
|
+
"os": [
|
|
2257
|
+
"linux"
|
|
2258
|
+
],
|
|
2259
|
+
"engines": {
|
|
2260
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2261
|
+
},
|
|
2262
|
+
"funding": {
|
|
2263
|
+
"url": "https://opencollective.com/libvips"
|
|
2264
|
+
},
|
|
2265
|
+
"optionalDependencies": {
|
|
2266
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.3"
|
|
2267
|
+
}
|
|
2268
|
+
},
|
|
2269
|
+
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
2270
|
+
"version": "0.34.4",
|
|
2271
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.4.tgz",
|
|
2272
|
+
"integrity": "sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==",
|
|
2273
|
+
"cpu": [
|
|
2274
|
+
"x64"
|
|
2275
|
+
],
|
|
2276
|
+
"license": "Apache-2.0",
|
|
2277
|
+
"optional": true,
|
|
2278
|
+
"os": [
|
|
2279
|
+
"linux"
|
|
2280
|
+
],
|
|
2281
|
+
"engines": {
|
|
2282
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2283
|
+
},
|
|
2284
|
+
"funding": {
|
|
2285
|
+
"url": "https://opencollective.com/libvips"
|
|
2286
|
+
},
|
|
2287
|
+
"optionalDependencies": {
|
|
2288
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.3"
|
|
2289
|
+
}
|
|
2290
|
+
},
|
|
2291
|
+
"node_modules/@img/sharp-wasm32": {
|
|
2292
|
+
"version": "0.34.4",
|
|
2293
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.4.tgz",
|
|
2294
|
+
"integrity": "sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==",
|
|
2295
|
+
"cpu": [
|
|
2296
|
+
"wasm32"
|
|
2297
|
+
],
|
|
2298
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
2299
|
+
"optional": true,
|
|
2300
|
+
"dependencies": {
|
|
2301
|
+
"@emnapi/runtime": "^1.5.0"
|
|
2302
|
+
},
|
|
2303
|
+
"engines": {
|
|
2304
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2305
|
+
},
|
|
2306
|
+
"funding": {
|
|
2307
|
+
"url": "https://opencollective.com/libvips"
|
|
1902
2308
|
}
|
|
1903
2309
|
},
|
|
1904
|
-
"node_modules/@img/
|
|
1905
|
-
"version": "
|
|
1906
|
-
"resolved": "https://registry.npmjs.org/@img/
|
|
1907
|
-
"integrity": "sha512-
|
|
1908
|
-
"
|
|
2310
|
+
"node_modules/@img/sharp-win32-arm64": {
|
|
2311
|
+
"version": "0.34.4",
|
|
2312
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.4.tgz",
|
|
2313
|
+
"integrity": "sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==",
|
|
2314
|
+
"cpu": [
|
|
2315
|
+
"arm64"
|
|
2316
|
+
],
|
|
2317
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
1909
2318
|
"optional": true,
|
|
2319
|
+
"os": [
|
|
2320
|
+
"win32"
|
|
2321
|
+
],
|
|
1910
2322
|
"engines": {
|
|
1911
|
-
"node": ">=
|
|
2323
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2324
|
+
},
|
|
2325
|
+
"funding": {
|
|
2326
|
+
"url": "https://opencollective.com/libvips"
|
|
1912
2327
|
}
|
|
1913
2328
|
},
|
|
1914
|
-
"node_modules/@img/sharp-
|
|
2329
|
+
"node_modules/@img/sharp-win32-ia32": {
|
|
1915
2330
|
"version": "0.34.4",
|
|
1916
|
-
"resolved": "https://registry.npmjs.org/@img/sharp-
|
|
1917
|
-
"integrity": "sha512-
|
|
2331
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.4.tgz",
|
|
2332
|
+
"integrity": "sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==",
|
|
1918
2333
|
"cpu": [
|
|
1919
|
-
"
|
|
2334
|
+
"ia32"
|
|
1920
2335
|
],
|
|
1921
|
-
"license": "Apache-2.0",
|
|
2336
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
1922
2337
|
"optional": true,
|
|
1923
2338
|
"os": [
|
|
1924
|
-
"
|
|
2339
|
+
"win32"
|
|
1925
2340
|
],
|
|
1926
2341
|
"engines": {
|
|
1927
2342
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1928
2343
|
},
|
|
1929
2344
|
"funding": {
|
|
1930
2345
|
"url": "https://opencollective.com/libvips"
|
|
1931
|
-
},
|
|
1932
|
-
"optionalDependencies": {
|
|
1933
|
-
"@img/sharp-libvips-darwin-arm64": "1.2.3"
|
|
1934
2346
|
}
|
|
1935
2347
|
},
|
|
1936
|
-
"node_modules/@img/sharp-
|
|
1937
|
-
"version": "
|
|
1938
|
-
"resolved": "https://registry.npmjs.org/@img/sharp-
|
|
1939
|
-
"integrity": "sha512-
|
|
2348
|
+
"node_modules/@img/sharp-win32-x64": {
|
|
2349
|
+
"version": "0.34.4",
|
|
2350
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.4.tgz",
|
|
2351
|
+
"integrity": "sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==",
|
|
1940
2352
|
"cpu": [
|
|
1941
|
-
"
|
|
2353
|
+
"x64"
|
|
1942
2354
|
],
|
|
1943
|
-
"license": "LGPL-3.0-or-later",
|
|
2355
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
1944
2356
|
"optional": true,
|
|
1945
2357
|
"os": [
|
|
1946
|
-
"
|
|
2358
|
+
"win32"
|
|
1947
2359
|
],
|
|
2360
|
+
"engines": {
|
|
2361
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2362
|
+
},
|
|
1948
2363
|
"funding": {
|
|
1949
2364
|
"url": "https://opencollective.com/libvips"
|
|
1950
2365
|
}
|
|
@@ -2113,6 +2528,19 @@
|
|
|
2113
2528
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
2114
2529
|
}
|
|
2115
2530
|
},
|
|
2531
|
+
"node_modules/@napi-rs/wasm-runtime": {
|
|
2532
|
+
"version": "0.2.12",
|
|
2533
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz",
|
|
2534
|
+
"integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==",
|
|
2535
|
+
"dev": true,
|
|
2536
|
+
"license": "MIT",
|
|
2537
|
+
"optional": true,
|
|
2538
|
+
"dependencies": {
|
|
2539
|
+
"@emnapi/core": "^1.4.3",
|
|
2540
|
+
"@emnapi/runtime": "^1.4.3",
|
|
2541
|
+
"@tybys/wasm-util": "^0.10.0"
|
|
2542
|
+
}
|
|
2543
|
+
},
|
|
2116
2544
|
"node_modules/@next/env": {
|
|
2117
2545
|
"version": "15.5.4",
|
|
2118
2546
|
"resolved": "https://registry.npmjs.org/@next/env/-/env-15.5.4.tgz",
|
|
@@ -2347,6 +2775,23 @@
|
|
|
2347
2775
|
"tslib": "^2.8.0"
|
|
2348
2776
|
}
|
|
2349
2777
|
},
|
|
2778
|
+
"node_modules/@tybys/wasm-util": {
|
|
2779
|
+
"version": "0.10.1",
|
|
2780
|
+
"resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
|
|
2781
|
+
"integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
|
|
2782
|
+
"dev": true,
|
|
2783
|
+
"license": "MIT",
|
|
2784
|
+
"optional": true,
|
|
2785
|
+
"dependencies": {
|
|
2786
|
+
"tslib": "^2.4.0"
|
|
2787
|
+
}
|
|
2788
|
+
},
|
|
2789
|
+
"node_modules/@types/diff": {
|
|
2790
|
+
"version": "7.0.2",
|
|
2791
|
+
"resolved": "https://registry.npmjs.org/@types/diff/-/diff-7.0.2.tgz",
|
|
2792
|
+
"integrity": "sha512-JSWRMozjFKsGlEjiiKajUjIJVKuKdE3oVy2DNtK+fUo8q82nhFZ2CPQwicAIkXrofahDXrWJ7mjelvZphMS98Q==",
|
|
2793
|
+
"license": "MIT"
|
|
2794
|
+
},
|
|
2350
2795
|
"node_modules/@types/estree": {
|
|
2351
2796
|
"version": "1.0.8",
|
|
2352
2797
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
@@ -2767,6 +3212,34 @@
|
|
|
2767
3212
|
"@codemirror/view": "^6.0.0"
|
|
2768
3213
|
}
|
|
2769
3214
|
},
|
|
3215
|
+
"node_modules/@unrs/resolver-binding-android-arm-eabi": {
|
|
3216
|
+
"version": "1.11.1",
|
|
3217
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz",
|
|
3218
|
+
"integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==",
|
|
3219
|
+
"cpu": [
|
|
3220
|
+
"arm"
|
|
3221
|
+
],
|
|
3222
|
+
"dev": true,
|
|
3223
|
+
"license": "MIT",
|
|
3224
|
+
"optional": true,
|
|
3225
|
+
"os": [
|
|
3226
|
+
"android"
|
|
3227
|
+
]
|
|
3228
|
+
},
|
|
3229
|
+
"node_modules/@unrs/resolver-binding-android-arm64": {
|
|
3230
|
+
"version": "1.11.1",
|
|
3231
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz",
|
|
3232
|
+
"integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==",
|
|
3233
|
+
"cpu": [
|
|
3234
|
+
"arm64"
|
|
3235
|
+
],
|
|
3236
|
+
"dev": true,
|
|
3237
|
+
"license": "MIT",
|
|
3238
|
+
"optional": true,
|
|
3239
|
+
"os": [
|
|
3240
|
+
"android"
|
|
3241
|
+
]
|
|
3242
|
+
},
|
|
2770
3243
|
"node_modules/@unrs/resolver-binding-darwin-arm64": {
|
|
2771
3244
|
"version": "1.11.1",
|
|
2772
3245
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz",
|
|
@@ -2781,6 +3254,233 @@
|
|
|
2781
3254
|
"darwin"
|
|
2782
3255
|
]
|
|
2783
3256
|
},
|
|
3257
|
+
"node_modules/@unrs/resolver-binding-darwin-x64": {
|
|
3258
|
+
"version": "1.11.1",
|
|
3259
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz",
|
|
3260
|
+
"integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==",
|
|
3261
|
+
"cpu": [
|
|
3262
|
+
"x64"
|
|
3263
|
+
],
|
|
3264
|
+
"dev": true,
|
|
3265
|
+
"license": "MIT",
|
|
3266
|
+
"optional": true,
|
|
3267
|
+
"os": [
|
|
3268
|
+
"darwin"
|
|
3269
|
+
]
|
|
3270
|
+
},
|
|
3271
|
+
"node_modules/@unrs/resolver-binding-freebsd-x64": {
|
|
3272
|
+
"version": "1.11.1",
|
|
3273
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz",
|
|
3274
|
+
"integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==",
|
|
3275
|
+
"cpu": [
|
|
3276
|
+
"x64"
|
|
3277
|
+
],
|
|
3278
|
+
"dev": true,
|
|
3279
|
+
"license": "MIT",
|
|
3280
|
+
"optional": true,
|
|
3281
|
+
"os": [
|
|
3282
|
+
"freebsd"
|
|
3283
|
+
]
|
|
3284
|
+
},
|
|
3285
|
+
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
|
|
3286
|
+
"version": "1.11.1",
|
|
3287
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz",
|
|
3288
|
+
"integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==",
|
|
3289
|
+
"cpu": [
|
|
3290
|
+
"arm"
|
|
3291
|
+
],
|
|
3292
|
+
"dev": true,
|
|
3293
|
+
"license": "MIT",
|
|
3294
|
+
"optional": true,
|
|
3295
|
+
"os": [
|
|
3296
|
+
"linux"
|
|
3297
|
+
]
|
|
3298
|
+
},
|
|
3299
|
+
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
|
|
3300
|
+
"version": "1.11.1",
|
|
3301
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz",
|
|
3302
|
+
"integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==",
|
|
3303
|
+
"cpu": [
|
|
3304
|
+
"arm"
|
|
3305
|
+
],
|
|
3306
|
+
"dev": true,
|
|
3307
|
+
"license": "MIT",
|
|
3308
|
+
"optional": true,
|
|
3309
|
+
"os": [
|
|
3310
|
+
"linux"
|
|
3311
|
+
]
|
|
3312
|
+
},
|
|
3313
|
+
"node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
|
|
3314
|
+
"version": "1.11.1",
|
|
3315
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz",
|
|
3316
|
+
"integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==",
|
|
3317
|
+
"cpu": [
|
|
3318
|
+
"arm64"
|
|
3319
|
+
],
|
|
3320
|
+
"dev": true,
|
|
3321
|
+
"license": "MIT",
|
|
3322
|
+
"optional": true,
|
|
3323
|
+
"os": [
|
|
3324
|
+
"linux"
|
|
3325
|
+
]
|
|
3326
|
+
},
|
|
3327
|
+
"node_modules/@unrs/resolver-binding-linux-arm64-musl": {
|
|
3328
|
+
"version": "1.11.1",
|
|
3329
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz",
|
|
3330
|
+
"integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==",
|
|
3331
|
+
"cpu": [
|
|
3332
|
+
"arm64"
|
|
3333
|
+
],
|
|
3334
|
+
"dev": true,
|
|
3335
|
+
"license": "MIT",
|
|
3336
|
+
"optional": true,
|
|
3337
|
+
"os": [
|
|
3338
|
+
"linux"
|
|
3339
|
+
]
|
|
3340
|
+
},
|
|
3341
|
+
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
|
|
3342
|
+
"version": "1.11.1",
|
|
3343
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz",
|
|
3344
|
+
"integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==",
|
|
3345
|
+
"cpu": [
|
|
3346
|
+
"ppc64"
|
|
3347
|
+
],
|
|
3348
|
+
"dev": true,
|
|
3349
|
+
"license": "MIT",
|
|
3350
|
+
"optional": true,
|
|
3351
|
+
"os": [
|
|
3352
|
+
"linux"
|
|
3353
|
+
]
|
|
3354
|
+
},
|
|
3355
|
+
"node_modules/@unrs/resolver-binding-linux-riscv64-gnu": {
|
|
3356
|
+
"version": "1.11.1",
|
|
3357
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz",
|
|
3358
|
+
"integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==",
|
|
3359
|
+
"cpu": [
|
|
3360
|
+
"riscv64"
|
|
3361
|
+
],
|
|
3362
|
+
"dev": true,
|
|
3363
|
+
"license": "MIT",
|
|
3364
|
+
"optional": true,
|
|
3365
|
+
"os": [
|
|
3366
|
+
"linux"
|
|
3367
|
+
]
|
|
3368
|
+
},
|
|
3369
|
+
"node_modules/@unrs/resolver-binding-linux-riscv64-musl": {
|
|
3370
|
+
"version": "1.11.1",
|
|
3371
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz",
|
|
3372
|
+
"integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==",
|
|
3373
|
+
"cpu": [
|
|
3374
|
+
"riscv64"
|
|
3375
|
+
],
|
|
3376
|
+
"dev": true,
|
|
3377
|
+
"license": "MIT",
|
|
3378
|
+
"optional": true,
|
|
3379
|
+
"os": [
|
|
3380
|
+
"linux"
|
|
3381
|
+
]
|
|
3382
|
+
},
|
|
3383
|
+
"node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
|
|
3384
|
+
"version": "1.11.1",
|
|
3385
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz",
|
|
3386
|
+
"integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==",
|
|
3387
|
+
"cpu": [
|
|
3388
|
+
"s390x"
|
|
3389
|
+
],
|
|
3390
|
+
"dev": true,
|
|
3391
|
+
"license": "MIT",
|
|
3392
|
+
"optional": true,
|
|
3393
|
+
"os": [
|
|
3394
|
+
"linux"
|
|
3395
|
+
]
|
|
3396
|
+
},
|
|
3397
|
+
"node_modules/@unrs/resolver-binding-linux-x64-gnu": {
|
|
3398
|
+
"version": "1.11.1",
|
|
3399
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz",
|
|
3400
|
+
"integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==",
|
|
3401
|
+
"cpu": [
|
|
3402
|
+
"x64"
|
|
3403
|
+
],
|
|
3404
|
+
"dev": true,
|
|
3405
|
+
"license": "MIT",
|
|
3406
|
+
"optional": true,
|
|
3407
|
+
"os": [
|
|
3408
|
+
"linux"
|
|
3409
|
+
]
|
|
3410
|
+
},
|
|
3411
|
+
"node_modules/@unrs/resolver-binding-linux-x64-musl": {
|
|
3412
|
+
"version": "1.11.1",
|
|
3413
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz",
|
|
3414
|
+
"integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==",
|
|
3415
|
+
"cpu": [
|
|
3416
|
+
"x64"
|
|
3417
|
+
],
|
|
3418
|
+
"dev": true,
|
|
3419
|
+
"license": "MIT",
|
|
3420
|
+
"optional": true,
|
|
3421
|
+
"os": [
|
|
3422
|
+
"linux"
|
|
3423
|
+
]
|
|
3424
|
+
},
|
|
3425
|
+
"node_modules/@unrs/resolver-binding-wasm32-wasi": {
|
|
3426
|
+
"version": "1.11.1",
|
|
3427
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz",
|
|
3428
|
+
"integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==",
|
|
3429
|
+
"cpu": [
|
|
3430
|
+
"wasm32"
|
|
3431
|
+
],
|
|
3432
|
+
"dev": true,
|
|
3433
|
+
"license": "MIT",
|
|
3434
|
+
"optional": true,
|
|
3435
|
+
"dependencies": {
|
|
3436
|
+
"@napi-rs/wasm-runtime": "^0.2.11"
|
|
3437
|
+
},
|
|
3438
|
+
"engines": {
|
|
3439
|
+
"node": ">=14.0.0"
|
|
3440
|
+
}
|
|
3441
|
+
},
|
|
3442
|
+
"node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
|
|
3443
|
+
"version": "1.11.1",
|
|
3444
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz",
|
|
3445
|
+
"integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==",
|
|
3446
|
+
"cpu": [
|
|
3447
|
+
"arm64"
|
|
3448
|
+
],
|
|
3449
|
+
"dev": true,
|
|
3450
|
+
"license": "MIT",
|
|
3451
|
+
"optional": true,
|
|
3452
|
+
"os": [
|
|
3453
|
+
"win32"
|
|
3454
|
+
]
|
|
3455
|
+
},
|
|
3456
|
+
"node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
|
|
3457
|
+
"version": "1.11.1",
|
|
3458
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz",
|
|
3459
|
+
"integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==",
|
|
3460
|
+
"cpu": [
|
|
3461
|
+
"ia32"
|
|
3462
|
+
],
|
|
3463
|
+
"dev": true,
|
|
3464
|
+
"license": "MIT",
|
|
3465
|
+
"optional": true,
|
|
3466
|
+
"os": [
|
|
3467
|
+
"win32"
|
|
3468
|
+
]
|
|
3469
|
+
},
|
|
3470
|
+
"node_modules/@unrs/resolver-binding-win32-x64-msvc": {
|
|
3471
|
+
"version": "1.11.1",
|
|
3472
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz",
|
|
3473
|
+
"integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==",
|
|
3474
|
+
"cpu": [
|
|
3475
|
+
"x64"
|
|
3476
|
+
],
|
|
3477
|
+
"dev": true,
|
|
3478
|
+
"license": "MIT",
|
|
3479
|
+
"optional": true,
|
|
3480
|
+
"os": [
|
|
3481
|
+
"win32"
|
|
3482
|
+
]
|
|
3483
|
+
},
|
|
2784
3484
|
"node_modules/@vscode/iconv-lite-umd": {
|
|
2785
3485
|
"version": "0.7.0",
|
|
2786
3486
|
"resolved": "https://registry.npmjs.org/@vscode/iconv-lite-umd/-/iconv-lite-umd-0.7.0.tgz",
|
|
@@ -3650,6 +4350,15 @@
|
|
|
3650
4350
|
"dev": true,
|
|
3651
4351
|
"license": "Apache-2.0"
|
|
3652
4352
|
},
|
|
4353
|
+
"node_modules/diff": {
|
|
4354
|
+
"version": "8.0.3",
|
|
4355
|
+
"resolved": "https://registry.npmjs.org/diff/-/diff-8.0.3.tgz",
|
|
4356
|
+
"integrity": "sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==",
|
|
4357
|
+
"license": "BSD-3-Clause",
|
|
4358
|
+
"engines": {
|
|
4359
|
+
"node": ">=0.3.1"
|
|
4360
|
+
}
|
|
4361
|
+
},
|
|
3653
4362
|
"node_modules/dlv": {
|
|
3654
4363
|
"version": "1.1.3",
|
|
3655
4364
|
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
|
|
@@ -5454,18 +6163,6 @@
|
|
|
5454
6163
|
"@pkgjs/parseargs": "^0.11.0"
|
|
5455
6164
|
}
|
|
5456
6165
|
},
|
|
5457
|
-
"node_modules/jiti": {
|
|
5458
|
-
"version": "2.6.0",
|
|
5459
|
-
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.0.tgz",
|
|
5460
|
-
"integrity": "sha512-VXe6RjJkBPj0ohtqaO8vSWP3ZhAKo66fKrFNCll4BTcwljPLz03pCbaNKfzGP5MbrCYcbJ7v0nOYYwUzTEIdXQ==",
|
|
5461
|
-
"dev": true,
|
|
5462
|
-
"license": "MIT",
|
|
5463
|
-
"optional": true,
|
|
5464
|
-
"peer": true,
|
|
5465
|
-
"bin": {
|
|
5466
|
-
"jiti": "lib/jiti-cli.mjs"
|
|
5467
|
-
}
|
|
5468
|
-
},
|
|
5469
6166
|
"node_modules/js-tokens": {
|
|
5470
6167
|
"version": "4.0.0",
|
|
5471
6168
|
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|