-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.69 KB
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
{
"name": "@spatialdata/core",
"version": "0.10.0",
"description": "Core library for interfacing with SpatialData stores",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./workers": {
"types": "./dist/workers/index.d.ts",
"import": "./dist/workers.js",
"require": "./dist/workers.cjs"
},
"./parquet-worker": {
"default": "./dist/parquet-worker.js"
},
"./parquet-wasm": {
"types": "./vendor/parquet-wasm/parquet_wasm.d.ts",
"default": "./vendor/parquet-wasm/parquet_wasm.js"
}
},
"files": [
"dist",
"vendor"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly --outDir dist",
"dev": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"zarrextra": "workspace:*",
"@math.gl/core": "catalog:",
"@zarrita/storage": "catalog:",
"anndata.js": "catalog:",
"apache-arrow": "catalog:",
"ol": "^10.6.1",
"zarrita": "catalog:",
"zod": "catalog:",
"earcut": "^3.0.2"
},
"overrides": {
"zarrita": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"@typescript/native": "catalog:",
"typescript": "catalog:",
"unzipit": "^2.0.3",
"vite": "catalog:",
"vitest": "catalog:"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Taylor-CCB-Group/SpatialData.js.git",
"directory": "packages/core"
}
}