-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 875 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 875 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
{
"name": "fluautoclicker",
"private": true,
"version": "0.1.0-beta.7",
"type": "module",
"scripts": {
"dev": "vite --config vite.config.mjs --configLoader native",
"typecheck": "tsc --noEmit",
"smoke:static": "node scripts/smoke-static.mjs",
"lint": "npm run typecheck && npm run smoke:static && cargo fmt --manifest-path src-tauri/Cargo.toml --check",
"build": "tsc && vite build --config vite.config.mjs --configLoader native",
"preview": "vite preview --config vite.config.mjs --configLoader native",
"test:rust": "cargo test --manifest-path src-tauri/Cargo.toml",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-opener": "^2"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"typescript": "~5.6.2",
"vite": "^6.0.3"
}
}