-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "@gmod/hclust",
"version": "3.0.11",
"description": "Hierarchical clustering",
"keywords": [
"jbrowse",
"clustering",
"wasm",
"hierarchical-clustering"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GMOD/hclust.git"
},
"author": "JBrowse Team",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"esm"
],
"scripts": {
"test": "vitest",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"clean": "rimraf dist esm tsconfig.build.tsbuildinfo",
"format": "prettier --write .",
"build:wasm": "bash scripts/build_wasm.sh && cp src/wasm/distance.js src/wasm/distance.d.ts src/",
"build:esm": "tsc --outDir esm",
"build:cjs": "tsc --module commonjs --moduleResolution bundler --outDir dist",
"build": "yarn build:wasm && yarn build:esm && yarn build:cjs",
"prebuild": "yarn clean",
"postbuild": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
"preversion": "yarn lint && yarn build && yarn test --run",
"postversion": "git push --follow-tags"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^9.39.4",
"eslint-plugin-import-x": "^4.16.2",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
}
}