forked from nomic-ai/deepscatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.57 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "deepscatter",
"type": "module",
"version": "2.15.3",
"description": "Fast, animated zoomable scatterplots scaling to billions of points",
"files": [
"dist"
],
"types": "./dist/deepscatter.d.ts",
"module": "./dist/deepscatter.js",
"main": "./dist/deepscatter.umd.cjs",
"exports": {
".": {
"import": "./dist/deepscatter.js",
"require": "./dist/deepscatter.umd.cjs",
"types": "./dist/deepscatter.d.ts"
}
},
"scripts": {
"dev": "vite --port 3344 --host",
"format": "prettier --write src",
"build": "vite build && tsc || true",
"prepublishOnly": "vite build && tsc || true && typedoc --skipErrorChecking src/*",
"test": "playwright test",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nomic-ai/deepscatter.git"
},
"keywords": [
"Data",
"Visualization",
"D3",
"Scatterplot"
],
"author": "Ben Schmidt",
"license": "CC BY-NC-SA 4.0",
"bugs": {
"url": "https://github.com/nomic-ai/deepscatter/issues"
},
"homepage": "https://github.com/nomic-ai/deepscatter#readme",
"peerDependencies": {
"apache-arrow": "13.0.0"
},
"dependencies": {
"d3-array": "^3.2.2",
"d3-color": "^3.1.0",
"d3-contour": "^4.0.2",
"d3-ease": "^3.0.1",
"d3-fetch": "^3.0.1",
"d3-format": "^3.1.0",
"d3-geo": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-random": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-timer": "^3.0.1",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"deepscatter": "^2.14.0",
"glsl-easings": "^1.0.0",
"glsl-fast-gaussian-blur": "^1.0.2",
"glsl-read-float": "^1.1.0",
"lodash.merge": "^4.6.2",
"rbush-3d": "^0.0.4",
"regl": "^2.1.0"
},
"devDependencies": {
"@playwright/test": "^1.31.2",
"@types/d3": "^7.4.0",
"@types/d3-geo": "^3.0.3",
"@types/d3-selection": "^3.0.4",
"@types/geojson": "^7946.0.10",
"@types/lodash.merge": "^4.6.7",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"apache-arrow": "13.0.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-formatter-summary-chart": "^0.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^46.0.0",
"glslify": "^7.1.1",
"glslify-hex": "^2.1.1",
"glslify-loader": "^2.0.0",
"rollup-plugin-glslify": "^1.3.1",
"terser": "^5.16.6",
"typedoc": "^0.23.26",
"vite": "^4.1.4"
}
}