UNPKG

1.64 kBJSONView Raw
1{
2 "name": "higlass-zarr-datafetchers",
3 "private": false,
4 "version": "0.3.0-next.3",
5 "description": "Fetch HiGlass track data from Zarr stores",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/keller-mark/higlass-zarr-datafetchers"
9 },
10 "type": "module",
11 "main": "dist/index.js",
12 "module": "dist/index.js",
13 "exports": {
14 ".": {
15 "import": "./dist/index.js"
16 }
17 },
18 "files": [
19 "src",
20 "dist"
21 ],
22 "author": "Mark Keller",
23 "license": "MIT",
24 "dependencies": {
25 "zarrita": "0.4.0-next.10",
26 "higlass-register": "^0.3.0",
27 "slugid": "^3.0.0"
28 },
29 "devDependencies": {
30 "rimraf": "^3.0.2",
31 "cross-env": "^7.0.0",
32 "esbuild": "^0.14.42",
33 "@esbuild-plugins/node-globals-polyfill": "^0.1.1",
34 "@esbuild-plugins/node-modules-polyfill": "^0.1.4",
35 "jsdom": "^20.0.0",
36 "vite": "^4.3.0",
37 "vitest": "^0.23.4",
38 "npm-run-all": "^4.1.5"
39 },
40 "scripts": {
41 "build": "rimraf ./dist/ && npm run build-lib",
42 "build-lib": "npm run build-lib:prod && npm run build-lib:dev",
43 "build-lib:prod": "cross-env APP_ENV=production ESBUILD_MODE=build node ./bundle.mjs",
44 "build-lib:dev": "cross-env APP_ENV=development ESBUILD_MODE=build node ./bundle.mjs",
45 "start-lib": "cross-env ESBUILD_MODE=watch node ./bundle.mjs",
46 "start-app": "vite --config vite-demo.config.js --port 3000",
47 "start": "npm-run-all --parallel start-lib start-app",
48 "prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
49 "test-watch": "vitest --config vite-test.config.js --watch",
50 "test": "vitest --config vite-test.config.js --run"
51 }
52}