-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.59 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
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": "0.1.3-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"
],
"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.0",
"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.15.0",
"rbush": "^4.0.1",
"react-use-measure": "^2.1.7",
"use-zustand": "^0.2.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@eslint/js": "^9.17.0",
"@react-three/drei": "^10.0.4",
"@react-three/fiber": "^9.0.4",
"@storybook/addon-essentials": "^8.5.5",
"@storybook/addon-interactions": "^8.5.5",
"@storybook/blocks": "^8.5.5",
"@storybook/manager-api": "^8.5.5",
"@storybook/react": "^8.5.5",
"@storybook/react-vite": "^8.5.5",
"@storybook/theming": "^8.5.5",
"@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.12.0",
"@types/proj4": "^2.5.5",
"@types/rbush": "^3.0.3",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^3.0.7",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"minimist": "^1.2.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"sass": "^1.83.1",
"storybook": "^8.5.5",
"typedoc": "^0.27.6",
"typescript": "^5.2.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.1.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-externalize-deps": "^0.9.0",
"vite-plugin-glsl": "^1.3.1",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^3.0.7"
},
"peerDependencies": {
"@react-three/drei": ">=9",
"@react-three/fiber": ">=8",
"comlink": ">=4.4",
"react": ">=18",
"react-dom": ">=18",
"three": ">=0.169"
}
}