-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.6 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
49
50
51
52
{
"name": "higlass-zarr-datafetchers",
"private": false,
"version": "0.3.0-next.2",
"description": "Fetch HiGlass track data from Zarr stores",
"repository": {
"type": "git",
"url": "https://github.com/keller-mark/higlass-zarr-datafetchers"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"src",
"dist"
],
"author": "Mark Keller",
"license": "MIT",
"dependencies": {
"zarrita": "0.4.0-next.10",
"higlass-register": "^0.3.0",
"slugid": "^3.0.0"
},
"devDependencies": {
"rimraf": "^3.0.2",
"cross-env": "^7.0.0",
"esbuild": "^0.14.42",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"jsdom": "^20.0.0",
"vite": "^4.3.0",
"vitest": "^0.23.4",
"npm-run-all": "^4.1.5"
},
"scripts": {
"build": "rimraf ./dist/ && npm run build-lib",
"build-lib": "npm run build-lib:prod && npm run build-lib:dev",
"build-lib:prod": "cross-env APP_ENV=production ESBUILD_MODE=build node ./bundle.mjs",
"build-lib:dev": "cross-env APP_ENV=development ESBUILD_MODE=build node ./bundle.mjs",
"start-lib": "cross-env ESBUILD_MODE=watch node ./bundle.mjs",
"start-app": "vite --config vite-demo.config.js --port 3000",
"start": "npm-run-all --parallel start-lib start-app",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
"test-watch": "vitest --config vite-test.config.js --watch",
"test": "vitest --config vite-test.config.js --run"
}
}