-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "zarr-gl",
"version": "0.3.0",
"description": "Custom WebGL Zarr layer for Mapbox and Maplibre",
"type": "module",
"main": "dist/zarr-gl.js",
"module": "dist/zarr-gl.js",
"types": "dist/index.d.ts",
"exports": {
"default": "dist/zarr-gl.js"
},
"files": [
"/dist"
],
"scripts": {
"fmt": "prettier --write src/*.ts",
"lint": "eslint src/*.ts",
"check": "tsc --noEmit",
"dev": "webpack watch --mode development",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carderne/zarr-gl.git"
},
"author": "Chris Arderne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/carderne/zarr-gl/issues"
},
"homepage": "https://github.com/carderne/zarr-gl",
"dependencies": {
"zarr-js": "^3.3.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"@types/ndarray": "^1.0.14",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"mapbox-gl": "^3.7.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "^2.0.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}