forked from camptocamp/ogc-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.62 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.62 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
{
"name": "@camptocamp/ogc-client",
"version": "1.3.1-dev",
"description": "A Typescript library for interacting with geospatial services.",
"main": "./dist/dist-node.js",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/camptocamp/ogc-client",
"homepage": "https://github.com/camptocamp/ogc-client",
"files": [
"dist/",
"src/"
],
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/dist-node.js",
"browser": "./dist/index.js",
"default": "./dist/dist-node.js"
}
},
"dependencies": {
"@rgrove/parse-xml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.38.0",
"@types/geojson": "^7946.0.10",
"@types/jest": "^29.5.11",
"@types/node": "^20.2.5",
"babel-jest": "^29.7.0",
"browser-cache-mock": "^0.1.7",
"buffer": "^6.0.3",
"esbuild": "^0.17.19",
"eslint": "^9.38.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-require-extensions": "^0.1.3",
"fs-extra": "^11.1.1",
"globals": "^16.4.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mitt": "^3.0.0",
"ol": "^8.2.0",
"prettier": "2.8.8",
"proj4": "^2.10.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^5.1.0",
"vite-plugin-dts": "^3.7.2"
},
"peerDependencies": {
"ol": ">5.x",
"proj4": ">2.8"
},
"peerDependenciesMeta": {
"ol": {
"optional": true
},
"proj4": {
"optional": true
}
},
"scripts": {
"test": "npm run test:browser && npm run test:node",
"test:browser": "jest",
"test:node": "jest --config jest.node.config.cjs",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"build": "rm -rf dist && npm run build:worker && npm run build:node && npm run build:browser",
"build:browser": "esbuild $(find ./src -name \"*.ts\" -type f -not -path '*worker/index.ts' -not -path '*.spec.ts') --outdir=./dist --platform=neutral --format=esm --sourcemap",
"build:node": "vite build --config vite.node-config.js",
"build:worker": "vite build --config vite.worker-config.js",
"prepublishOnly": "npm run typecheck && npm test && npm run build",
"typecheck": "tsc --noEmit"
},
"author": "olivia.guyot@camptocamp.com",
"license": "BSD-3-Clause"
}