-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.49 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
{
"name": "colmapview",
"private": true,
"version": "0.14.2",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc -b",
"build": "tsc -b && vite build",
"build:wasm": "cd colmap-wasm && emcmake cmake -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build --parallel && node ../scripts/copy-wasm-assets.mjs",
"build:all": "npm run build:wasm && npm run build",
"check": "npm run lint && npm run test:run && npm run build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:pycolmap": "node scripts/run-pycolmap-tests.mjs",
"test:pycolmap:regen": "node scripts/run-pycolmap-tests.mjs --regen"
},
"dependencies": {
"@fontsource-variable/ibm-plex-sans": "^5.3.0",
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@sparkjsdev/spark": "^2.1.0",
"@tanstack/react-virtual": "^3.13.18",
"fflate": "^0.8.2",
"gif.js": "^0.2.0",
"gs-toolbox": "file:vendor/gs-toolbox",
"js-yaml": "^4.1.1",
"libarchive.js": "^2.0.2",
"mediabunny": "^1.46.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hotkeys-hook": "^5.2.3",
"react-resizable-panels": "^4.4.0",
"react-virtuoso": "^4.18.1",
"react-window": "^2.2.5",
"three": "^0.182.0",
"zod": "^4.3.5",
"zustand": "^5.0.10"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.58.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/gif.js": "^0.2.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.8",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/react-window": "^1.8.8",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.17",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^17.0.0",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^4.0.17"
},
"overrides": {
"stats-gl@2.4.2": {
"three": "^0.182.0"
}
}
}