-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 996 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 996 Bytes
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
{
"name": "zoomdata",
"version": "0.1.0",
"description": "Zoomable data maps for scientific visualization",
"type": "module",
"main": "dist/zoomdata.js",
"module": "dist/zoomdata.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/zoomdata.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite --config vite.demo.config.ts",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"serve-data": "python cors_server.py",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"keywords": [
"visualization",
"deep-zoom",
"scientific-data",
"netcdf"
],
"author": "",
"license": "MIT",
"dependencies": {
"netcdfjs": "^3.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.5",
"happy-dom": "^20.9.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^4.1.5"
}
}