-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.77 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
{
"name": "hyper-scatter",
"version": "0.2.0",
"description": "High-performance WebGL scatter plot renderer for Euclidean, Hyperbolic, and non-Euclidean embeddings.",
"keywords": [
"webgl",
"scatterplot",
"visualization",
"hyperbolic",
"poincare",
"data-visualization",
"webgl2",
"embedding",
"performance"
],
"author": "Matin Mahmood <https://twitter.com/MatinMnM>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Hyper3Labs/hyper-scatter.git"
},
"bugs": {
"url": "https://github.com/Hyper3Labs/hyper-scatter/issues"
},
"homepage": "https://github.com/Hyper3Labs/hyper-scatter#readme",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist-lib/index.d.ts",
"import": "./dist-lib/index.js"
}
},
"main": "./dist-lib/index.js",
"module": "./dist-lib/index.js",
"types": "./dist-lib/index.d.ts",
"files": [
"dist-lib",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "tsc -p tsconfig.lib.json",
"prepack": "npm run build:lib",
"pack:lib": "npm run build:lib && npm pack",
"preview": "vite preview",
"bench": "npx tsx src/benchmarks/run-browser-bench.ts",
"bench:headless": "npx tsx src/benchmarks/run-browser-bench.ts --headless",
"bench:demo": "npx tsx src/benchmarks/run-demo-interaction-bench.ts",
"bench:accuracy": "npx tsx src/benchmarks/run-browser-accuracy.ts",
"bench:node": "npx tsx src/benchmarks/node-bench.ts",
"bench:browser": "vite --open /benchmark.html"
},
"devDependencies": {
"@types/node": "^20.10.0",
"puppeteer": "^24.34.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vite": "^5.0.0"
}
}