-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.19 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.19 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
{
"name": "hdbscan-ts",
"version": "1.0.16",
"description": "TypeScript implementation of HDBSCAN clustering algorithm",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Ge Li",
"scripts": {
"build": "tsc",
"bench": "ts-node bench/perf.ts",
"test": "jest --config jest.config.js",
"prepare": "npm run build",
"start": "ts-node src/example.ts"
},
"keywords": [
"clustering",
"hdbscan",
"dbscan",
"clusters",
"cluster",
"machine-learning",
"typescript",
"data-science",
"ml",
"ai",
"density",
"statistics"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.15.0",
"jest": "^29.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeLi2001/hdbscan-ts.git"
},
"bugs": {
"url": "https://github.com/GeLi2001/hdbscan-ts/issues"
},
"files": [
"dist/hdbscan/core.js",
"dist/hdbscan/core.d.ts",
"dist/index.js",
"dist/index.d.ts",
"README.md",
"LICENSE"
]
}