-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.5 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.5 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "videx-3d",
"version": "5.1.0-beta",
"private": false,
"type": "module",
"license": "MIT",
"description": "React 3D component library designed for sub surface visualizations in the browser",
"repository": {
"type": "git",
"url": "git+https://github.com/equinor/videx-3d.git"
},
"keywords": [
"3d",
"React",
"threejs",
"Subsurface",
"visualization"
],
"files": [
"dist"
],
"engines": {
"npm": "^11.7.0"
},
"exports": {
".": {
"import": "./dist/main.js",
"types": "./dist/types/main.d.ts"
},
"./sdk": {
"import": "./dist/sdk.js",
"types": "./dist/types/sdk/index.d.ts"
},
"./generators": {
"import": "./dist/generators.js",
"types": "./dist/types/generators/index.d.ts"
}
},
"scripts": {
"start": "npm run storybook",
"build": "npm run build-lib && npm run build-static",
"build-lib": "tsc && vite build",
"build-static": "node scripts/generate-story-args.js && storybook build -o static && typedoc",
"lint": "eslint .",
"storybook": "node scripts/generate-story-args.js && storybook dev -p 6006",
"test": "vitest",
"coverage": "vitest --coverage"
},
"dependencies": {
"curve-interpolator": "^3.3.1",
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-drag": "^3.0.0",
"d3-format": "^3.1.2",
"d3-interpolate": "^3.0.1",
"d3-path": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"lodash.filter": "^4.6.0",
"nanoid": "^5.1.2",
"p-limit": "^6.2.0",
"p-queue": "^8.1.0",
"proj4": "^2.20.3",
"rbush": "^4.0.1",
"react-use-measure": "^2.1.7",
"use-zustand": "^0.2.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@eslint/js": "^9.39.3",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@storybook/addon-docs": "^10.2.13",
"@storybook/react-vite": "^10.2.13",
"@types/d3-array": "^3.2.1",
"@types/d3-axis": "^3.0.6",
"@types/d3-drag": "^3.0.7",
"@types/d3-format": "^3.0.4",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-path": "^3.1.0",
"@types/d3-scale": "^4.0.8",
"@types/d3-selection": "^3.0.11",
"@types/lodash.filter": "^4.6.9",
"@types/node": "^22.19.13",
"@types/proj4": "^2.5.5",
"@types/rbush": "^3.0.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.3",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-storybook": "^10.2.13",
"globals": "^17.4.0",
"lodash": "^4.17.23",
"minimist": "^1.2.8",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"sass": "^1.97.3",
"storybook": "^10.2.13",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "^7.3.1",
"vite-plugin-css-injected-by-js": "^4.0.1",
"vite-plugin-externalize-deps": "^0.10.0",
"vite-plugin-glsl": "^1.5.5",
"vite-plugin-static-copy": "^3.2.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@react-three/drei": ">=9",
"@react-three/fiber": ">=8",
"comlink": ">=4.4",
"react": ">=18",
"react-dom": ">=18",
"three": ">=0.179"
}
}