-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "@deltares/webgl-streamline-visualizer",
"description": "Particle-based flow field visualiser based on WebGL",
"license": "MIT",
"private": false,
"version": "1.0.1",
"type": "module",
"files": [
"dist"
],
"module": "./dist/webgl-streamline-visualizer.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/webgl-streamline-visualizer.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint \"./src/**/*.ts\" \"./examples/**/*.ts\"",
"preview": "vite preview",
"test": "vitest",
"test-once": "vitest run"
},
"devDependencies": {
"@deltares/fews-wms-requests": "^1.0.3",
"@eslint/js": "^9.18.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.6",
"@vitest/browser": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"playwright": "^1.49.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vite-plugin-glsl": "^1.3.1",
"vitest": "^2.1.8"
},
"dependencies": {
"geotiff": "^2.1.3",
"lodash-es": "^4.17.21",
"maplibre-gl": "^4.7.1"
}
}