-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
72 lines (72 loc) · 2.2 KB
/
package.json
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
{
"name": "@camptocamp/ogc-client",
"version": "1.2.1-dev",
"description": "A Typescript library for interacting with geospatial services.",
"main": "./dist/dist-node.js",
"browser": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": "https://github.com/camptocamp/ogc-client",
"homepage": "https://github.com/camptocamp/ogc-client",
"files": [
"dist/",
"src/"
],
"type": "module",
"dependencies": {
"@rgrove/parse-xml": "^4.1.0",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@types/geojson": "^7946.0.10",
"@types/jest": "^29.5.11",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"browser-cache-mock": "^0.1.7",
"buffer": "^6.0.3",
"esbuild": "^0.17.19",
"eslint": "^8.57.0",
"eslint-plugin-require-extensions": "^0.1.3",
"fs-extra": "^11.1.1",
"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",
"regenerator-runtime": "^0.13.11",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"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": "jest",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/**/*.ts",
"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"
}