forked from code4history/MaplatTin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.63 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@maplat/transform",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "0.5.2",
"description": "A JavaScript library that performs coordinate transformation between two plane coordinate systems using transformation definitions generated by Maplat.",
"type": "module",
"engines": {
"pnpm": ">=9",
"node": ">=20"
},
"module": "./dist/maplat_transform.js",
"browser": "./dist/maplat_transform.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/maplat_transform.umd.js",
"import": "./dist/maplat_transform.js",
"default": "./dist/maplat_transform.js"
}
},
"files": [
"dist",
"src",
"README.md",
"README.ja.md"
],
"pnpm": {
"overrides": {
"@microsoft/api-extractor": "7.58.0"
}
},
"scripts": {
"generate:submaps": "node scripts/generate-submaps-compiled.mjs",
"dev": "vite --host",
"build": "pnpm run typecheck && cross-env BUILD_MODE=package vite build",
"typecheck": "tsc --noEmit --allowImportingTsExtensions",
"build:demo": "vite build",
"deploy": "pnpm run build:demo",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint src tests",
"prepublishOnly": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
"version:bump": "node scripts/bump-version.js",
"version:sync": "node scripts/sync-version.js",
"publish:npm": "node scripts/publish-npm.js",
"publish:npm:dry": "node scripts/publish-npm.js --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code4history/MaplatTransform.git"
},
"author": "Code for History",
"license": "Maplat Limited License 1.1",
"bugs": {
"url": "https://github.com/code4history/MaplatTransform/issues"
},
"homepage": "https://github.com/code4history/MaplatTransform/wiki",
"keywords": [
"projection",
"GIS",
"Maplat",
"MaplatTransform"
],
"devDependencies": {
"@eslint/js": "^9.39.2",
"@maplat/tin": "0.14.0",
"@types/geojson": "^7946.0.16",
"@types/node": "^25.5.1",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^3.2.4",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"jest-matcher-deep-close-to": "^3.0.2",
"jsdom": "^27.4.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@turf/turf": "^7.3.1"
}
}