mirror of
https://github.com/protomaps/PMTiles.git
synced 2026-02-04 02:41:09 +00:00
Bumps [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) to 5.3.4 and updates ancestor dependency [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3). These dependencies need to be updated together. Updates `fast-xml-parser` from 4.4.1 to 5.3.4 - [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases) - [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md) - [Commits](https://github.com/NaturalIntelligence/fast-xml-parser/compare/v4.4.1...v5.3.4) Updates `@aws-sdk/client-s3` from 3.637.0 to 3.982.0 - [Release notes](https://github.com/aws/aws-sdk-js-v3/releases) - [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.982.0/clients/client-s3) --- updated-dependencies: - dependency-name: fast-xml-parser dependency-version: 5.3.4 dependency-type: indirect - dependency-name: "@aws-sdk/client-s3" dependency-version: 3.982.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
1.2 KiB
JSON
28 lines
1.2 KiB
JSON
{
|
|
"name": "pmtiles-aws",
|
|
"version": "0.0.0",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.5.3",
|
|
"@types/aws-lambda": "^8.10.145",
|
|
"@types/node": "^20.14.8",
|
|
"esbuild": "^0.25.0",
|
|
"tsx": "^4.19.3",
|
|
"typescript": "^4.8.4",
|
|
"yaml-cfn": "^0.3.2"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"tsc": "tsc --noEmit --watch",
|
|
"build-zip": "esbuild src/index.ts --target=es2020 --outfile=dist/index.js --format=cjs --bundle --platform=node --target=node20 --external:@aws-sdk/client-s3 --external:@aws-sdk/node-http-handler --banner:js=//$(git describe --always) && cd dist && zip lambda_function.zip index.js",
|
|
"build-cloudformation-stack": "esbuild src/index.ts --target=es2020 --minify --outfile=dist/index.js --format=cjs --bundle --platform=node --target=node20 --external:@aws-sdk/client-s3 --banner:js=//sha:$(git describe --always) && tsx inline_lambda.ts",
|
|
"test": "tsx ../shared/index.test.ts",
|
|
"biome": "biome check --config-path=../../js/ src --apply",
|
|
"biome-check": "biome check --config-path=../../js src"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.982.0",
|
|
"@smithy/node-http-handler": "^3.1.4",
|
|
"pmtiles": "^4.3.0"
|
|
}
|
|
}
|