-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.96 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
{
"name": "@c4h/atlas",
"version": "0.0.1",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"description": "Candidate CRS catalog lookup for Maplat V3.1.",
"module": "./dist/atlas.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/atlas.js"
}
},
"files": [
"dist",
"src",
"data/crs/custom-projections.json",
"README.md",
"README.ja.md"
],
"engines": {
"pnpm": ">=10",
"node": ">=20"
},
"scripts": {
"dev": "pnpm run build:package-runtime && vite --host",
"build": "pnpm run build:package-runtime",
"build:package-runtime": "pnpm run typecheck && BUILD_MODE=package vite build",
"build:demo": "pnpm run build:package-runtime && vite build",
"verify:demo": "GITHUB_PAGES=true pnpm run build:demo && node scripts/verify-demo-pages-build.mjs",
"verify:packed-browser": "pnpm run build:package-runtime && node scripts/verify-packed-browser-runtime.mjs",
"crs:discover": "node scripts/generate-crs-manifest.cjs",
"crs:hydrate": "node scripts/hydrate-crs-authority.cjs",
"typecheck": "tsc --noEmit --allowImportingTsExtensions",
"test": "vitest run",
"prepublishOnly": "pnpm run test && pnpm run typecheck && pnpm run build && pnpm run verify:demo && pnpm run verify:packed-browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code4history/Atlas.git"
},
"author": "Code for History",
"license": "MIT",
"bugs": {
"url": "https://github.com/code4history/Atlas/issues"
},
"homepage": "https://code4history.github.io/Atlas/",
"keywords": [
"projection",
"GIS",
"CRS",
"Maplat",
"Atlas"
],
"dependencies": {
"proj-wasm": "0.1.0-alpha8"
},
"devDependencies": {
"@types/node": "^24.0.0",
"jszip": "^3.10.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
}
}