-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1013 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1013 Bytes
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
{
"name": "graw",
"private": true,
"version": "0.0.9",
"license": "MIT OR Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"licenses": "node scripts/generate-licenses.mjs",
"licenses:check": "npm run licenses && git diff --exit-code -- src/generated/licenses.ts",
"test:frontend": "node --experimental-strip-types --test tests/input.test.mjs tests/viewport.test.mjs tests/font-size.test.mjs tests/cfa-pattern.test.mjs tests/config-validation.test.mjs tests/interface-layout.test.mjs",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.2",
"@tauri-apps/plugin-opener": "^2",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.1",
"typescript": "~7.0.2",
"vite": "^8.2.2"
}
}