@swissgeo/coordinates 1.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@swissgeo/coordinates",
3
+ "version": "1.0.0-beta.1",
4
+ "description": "Projection definition and coordinates utils for SWISSGEO projects.",
5
+ "license": "BSD-3-Clause",
6
+ "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.cjs"
12
+ }
13
+ },
14
+ "main": "./dist/index.umd.cjs",
15
+ "module": "./dist/index.js",
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "pnpm run type-check && pnpm run generate-types && vite build",
21
+ "build:dev": "pnpm run build --mode development",
22
+ "build:dev:watch": "pnpm run build --watch --mode development",
23
+ "build:int": "pnpm run build --mode integration",
24
+ "build:prod": "pnpm run build --mode production",
25
+ "dev": "vite",
26
+ "generate-types": "tsc --declaration",
27
+ "lint": "eslint --fix",
28
+ "lint:no-fix": "eslint",
29
+ "preview": "vite preview",
30
+ "test:unit": "vitest --run --mode development --environment jsdom",
31
+ "test:unit:watch": "vitest --mode development --environment jsdom",
32
+ "type-check": "tsc -p tsconfig.json"
33
+ },
34
+ "dependencies": {
35
+ "@swissgeo/log": "workspace:*",
36
+ "@swissgeo/numbers": "workspace:*",
37
+ "lodash": "catalog:"
38
+ },
39
+ "devDependencies": {
40
+ "@microsoft/api-extractor": "catalog:",
41
+ "@prettier/plugin-xml": "catalog:",
42
+ "@swissgeo/config-eslint": "workspace:*",
43
+ "@swissgeo/config-prettier": "workspace:*",
44
+ "@swissgeo/config-typescript": "workspace:*",
45
+ "@turf/turf": "catalog:",
46
+ "@types/chai": "catalog:",
47
+ "@types/geojson": "catalog:",
48
+ "@types/lodash": "catalog:",
49
+ "chai": "catalog:",
50
+ "eslint": "catalog:",
51
+ "prettier": "catalog:",
52
+ "prettier-plugin-jsdoc": "catalog:",
53
+ "prettier-plugin-packagejson": "catalog:",
54
+ "prettier-plugin-tailwindcss": "catalog:",
55
+ "typescript": "catalog:",
56
+ "unplugin-dts": "catalog:",
57
+ "vite": "catalog:",
58
+ "vitest": "catalog:"
59
+ },
60
+ "peerDependencies": {
61
+ "ol": "catalog:",
62
+ "proj4": "catalog:"
63
+ }
64
+ }