-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 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
73
74
75
76
77
78
79
{
"name": "react-map-geotiff-layer",
"version": "0.0.2",
"description": "A react map gl layer for geotiff rendering in WebGL",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --passWithNoTests --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run prettier && npm run lint",
"start": "parcel --out-dir playground-build --target browser --hmr-port 5001 ./src/playground/index.html"
},
"staticFiles": {
"staticPath": "public",
"staticOutDir": "public",
"watcherGlob": "**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xvThomas/react-map-geotiff-layer.git"
},
"peerDependencies": {
"react": ">=16.3"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"react, react-map-gl, geotiff, WebGL"
],
"author": "Xavier Thomas (xvthomas)",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.2",
"@testing-library/react": "^14.0.0",
"@types/chroma-js": "^2.4.1",
"@types/jest": "^29.5.5",
"@types/mapbox-gl": "^2.7.17",
"@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.4",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.6.4",
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^1.2.4",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"testcontainers": "^10.2.2",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"chroma-js": "^2.4.2",
"fp-ts": "^2.16.1",
"georaster": "^1.6.0",
"in": "^0.19.0",
"mapbox-gl": "^2.15.0",
"react-map-gl": "^7.1.5",
"ts-gl-shader": "^0.1.0"
}
}