-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 2.22 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
{
"name": "eraw",
"private": true,
"version": "0.6.1",
"description": "Windows RAW sensor-data viewer, diagnostic tool, and converter for Bayer and Quad CFA workflows",
"license": "GPL-3.0-or-later",
"author": "eRAW contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/woooooooooolf/eRAW.git"
},
"homepage": "https://github.com/woooooooooolf/eRAW#readme",
"bugs": {
"url": "https://github.com/woooooooooolf/eRAW/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"dev:site": "vite --config vite.pages.config.ts",
"build": "tsc && vite build",
"build:site": "tsc --noEmit -p site/tsconfig.json && vite build --config vite.pages.config.ts",
"check": "tsc --noEmit",
"check:site": "tsc --noEmit -p site/tsconfig.json",
"notices": "node scripts/generate-third-party-notices.mjs",
"test:i18n": "node --test --test-timeout=30000 tests/i18n.test.mjs",
"test:site": "node --test --test-timeout=30000 tests/site.test.mjs",
"test:frontend": "node --test --test-timeout=30000 tests/about-dialog.test.mjs tests/app-settings.test.mjs tests/help-window.test.mjs tests/i18n.test.mjs tests/channel-rendering.test.mjs tests/descriptor-input.test.mjs tests/display-adjustment.test.mjs tests/display-exposure.test.mjs tests/document-close.test.mjs tests/fullscreen.test.mjs tests/image-capture.test.mjs tests/image-statistics.test.mjs tests/keyboard-shortcuts.test.mjs tests/missing-pixel-rendering.test.mjs tests/packing-controls.test.mjs tests/pixel-overlay.test.mjs tests/pixel-value-display.test.mjs tests/repository-publication.test.mjs tests/roi-selection.test.mjs tests/site.test.mjs tests/statistics-chart-data.test.mjs tests/statistics-link.test.mjs tests/statistics-view-state.test.mjs tests/theme-styles.test.mjs tests/viewport-pixel-alignment.test.mjs tests/viewport-transform.test.mjs",
"release": "tauri build --no-bundle",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.0.0",
"echarts": "^6.1.0",
"katex": "^0.18.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"typescript": "~6.0.3",
"vite": "^8.2.2"
}
}