-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.02 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.02 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@maplat/ui",
"version": "0.12.1",
"description": "Maplat is the cool Historical Map/Illustrated Map Viewer.\nIt can transform each map coordinates with nonlinear but homeomorphic projection and makes possible that the maps can collaborate with GPS/accurate maps, without distorting original maps.",
"type": "module",
"main": "dist/maplat_ui.umd.js",
"module": "dist/maplat_ui.es.js",
"types": "dist/index.d.ts",
"files": [
"src/",
"dist/*.js",
"dist/*.d.ts",
"dist/assets/locales/",
"legacy/",
"less/",
"assets/"
],
"scripts": {
"dev": "concurrently \"pnpm watch:sw\" \"vite --host\"",
"build:sw": "node scripts/build-sw.js",
"watch:sw": "node scripts/build-sw.js --watch",
"build": "cross-env BUILD_MODE=package tsc && cross-env BUILD_MODE=package vite build && pnpm build:sw",
"build:demo": "pnpm build:sw && vite build",
"preview": "vite preview",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"lint:eslint": "eslint \"{src,spec,demo}/**/*.{ts,js}\" --fix",
"lint:prettier": "prettier \"./{src,spec,demo}/**/*.{ts,js}\" --write"
},
"pnpm": {
"overrides": {
"@microsoft/api-extractor": "7.58.0"
},
"onlyBuiltDependencies": [
"esbuild",
"sass",
"workbox-build"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/code4history/Maplat.git"
},
"keywords": [
"warp",
"GIS"
],
"author": "Kohei Otsuka, Code for History",
"license": "Maplat Limited License 1.1",
"bugs": {
"url": "https://github.com/code4history/Maplat/issues"
},
"homepage": "https://github.com/code4history/Maplat/wiki",
"engines": {
"npm": "use-pnpm-please",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@c4h/chuci": "^0.2.6",
"@c4h/weiwudi": "^0.3.0",
"@maplat/core": "0.13.1",
"@turf/turf": "^7.3.1",
"@types/page": "^1.11.9",
"bootstrap.native": "^5.1.6",
"i18next": "^25.8.5",
"i18next-http-backend": "^3.0.2",
"page": "^1.11.6",
"qrcode": "^1.5.4",
"swiper": "^11.2.10",
"workbox-core": "^7.4.0",
"workbox-expiration": "^7.4.0",
"workbox-precaching": "^7.4.0",
"workbox-routing": "^7.4.0",
"workbox-strategies": "^7.4.0"
},
"peerDependencies": {
"mapbox-gl": "^1.0.0 || ^2.0.0 || ^3.0.0",
"maplibre-gl": "^3.0.0 || ^4.0.0",
"ol": "^9.0.0 || ^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.5.1",
"@types/ol": "^6.5.3",
"@types/qrcode": "^1.5.6",
"bootstrap-sass": "^3.4.3",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"ol": "^10.8.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4",
"workbox-build": "^7.4.0",
"workbox-window": "^7.4.0"
}
}