James Beard b7f1b4eafb v7.3.1
2025-11-27 17:43:27 +11:00

91 lines
2.3 KiB
JSON

{
"name": "@turf/transform-scale",
"version": "7.3.1",
"description": "Changes the size of a geometry by scaling it up or down.",
"author": "Turf Authors",
"contributors": [
"Stefano Borghi <@stebogit>",
"Denis Carriere <@DenisCarriere>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Turfjs/turf/issues"
},
"homepage": "https://github.com/Turfjs/turf",
"repository": {
"type": "git",
"url": "git://github.com/Turfjs/turf.git"
},
"funding": "https://opencollective.com/turf",
"publishConfig": {
"access": "public"
},
"keywords": [
"turf",
"transform",
"transformation",
"scale",
"enlarge",
"contract",
"zoom-in",
"zoom-out"
],
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"bench": "tsx bench.ts",
"build": "tsup --config ../../tsup.config.ts",
"docs": "tsx ../../scripts/generate-readmes.ts",
"test": "pnpm run /test:.*/",
"test:tape": "tsx test.ts",
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
"@turf/bbox-polygon": "workspace:*",
"@turf/hex-grid": "workspace:*",
"@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"write-json-file": "^6.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/center": "workspace:*",
"@turf/centroid": "workspace:*",
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/rhumb-bearing": "workspace:*",
"@turf/rhumb-destination": "workspace:*",
"@turf/rhumb-distance": "workspace:*",
"@types/geojson": "^7946.0.10",
"tslib": "^2.8.1"
}
}