-
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) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 3.41 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-monorepo",
"version": "0.0.1",
"private": true,
"description": "A library for interfacing with and visualizing SpatialData stores in TS/JS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Taylor-CCB-Group/SpatialData.js.git"
},
"packageManager": "pnpm@11.20.0",
"scripts": {
"clean": "rm -rf packages/*/dist packages/vis/demo/dist packages/zarrextra/src/*.d.ts packages/zarrextra/src/*.d.ts.map",
"build": "pnpm -r --filter='!docs' run build",
"test": "pnpm -r --filter='!docs' run test",
"test:unit": "vitest run --project='!integration'",
"test:integration": "vitest run --project=integration",
"test:browser:production": "pnpm build && pnpm exec vite build --config tests/production/browser/vite.config.ts && pnpm exec playwright test --config tests/production/browser/playwright.config.ts",
"test:all": "pnpm test:unit && pnpm test:integration",
"test:fixtures:generate": "uv run python/scripts/generate_fixtures.py",
"test:fixtures:generate:0.5.0": "uv run python/scripts/generate_fixtures.py --version 0.5.0",
"test:fixtures:generate:0.6.1": "uv run python/scripts/generate_fixtures.py --version 0.6.1",
"test:fixtures:generate:0.7.2": "uv run python/scripts/generate_fixtures.py --version 0.7.2",
"test:fixtures:generate:0.8.0": "uv run python/scripts/generate_fixtures.py --version 0.8.0",
"test:fixtures:generate:codecs": "node scripts/vendor-openjph-for-python.mjs && UV_CACHE_DIR=.tmp/uv-cache uv run --directory python/spatialdata-js-util --extra write python scripts/generate_codec_fixtures.py --output-dir ../../test-fixtures/codecs --experimental-htj2k --overwrite",
"write-synthetic": "node scripts/vendor-openjph-for-python.mjs && uv run --directory python/spatialdata-js-util --extra write python scripts/write_synthetic.py",
"test:python": "node scripts/vendor-openjph-for-python.mjs && UV_CACHE_DIR=.tmp/uv-cache uv run --directory python/spatialdata-js-util --extra write --extra tui pytest",
"test:server": "node scripts/test-server.js",
"test:proxy": "node scripts/cors-proxy.js",
"validate:datasets:js": "node scripts/validate-datasets-js.js",
"lint": "biome check .",
"lint:biome": "biome ci packages/*/src",
"lint:react": "eslint \"packages/react/src/**/*.{ts,tsx}\" \"packages/vis/src/**/*.{ts,tsx}\"",
"format": "biome format --write .",
"format:check": "biome format .",
"dev": "pnpm -r --parallel dev",
"dev:stop": "node scripts/dev-stop.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"publish:latest": "pnpm build && changeset publish",
"publish:next": "pnpm build && changeset publish --tag next",
"docs:dev": "pnpm --filter docs dev",
"docs:build": "pnpm --filter docs build"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@playwright/test": "^1.62.0",
"@rolldown/plugin-babel": "catalog:",
"@typescript-eslint/parser": "^8.62.0",
"@vitejs/plugin-react": "catalog:",
"@zarrita/storage": "catalog:",
"babel-plugin-react-compiler": "catalog:",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=24",
"pnpm": ">=11"
},
"volta": {
"node": "24.14.1",
"pnpm": "11.12.0"
}
}