-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.03 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": "lightning-p2p",
"private": true,
"version": "0.9.9",
"description": "Open-source peer-to-peer file transfer for Windows and Android with iroh, QUIC, and BLAKE3 verification.",
"license": "Apache-2.0",
"packageManager": "pnpm@10.33.0",
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=10 <11"
},
"pnpm": {
"overrides": {
"brace-expansion": "5.0.6"
}
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && node scripts/build-web-metadata.mjs",
"build:windows": "pnpm tauri build --target x86_64-pc-windows-msvc",
"check": "pnpm check:release-state && pnpm check:frontend && pnpm check:rust",
"check:baseline": "pnpm check:release-state && pnpm check:frontend && pnpm check:rust:baseline",
"check:frontend": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"check:release-state": "node scripts/check-release-state.mjs",
"check:rust": "cargo test --manifest-path src-tauri/Cargo.toml && cargo clippy --manifest-path src-tauri/Cargo.toml --all-targets -- -D warnings",
"check:rust:baseline": "cargo fmt --manifest-path src-tauri/Cargo.toml --check && cargo test --manifest-path src-tauri/Cargo.toml --lib && cargo clippy --manifest-path src-tauri/Cargo.toml --all-targets -- -D warnings",
"android:init": "pnpm tauri android init --ci",
"android:dev": "pnpm tauri android dev",
"android:run": "pnpm tauri android run",
"android:build:debug": "pnpm tauri android build --debug --apk",
"android:build:aab": "pnpm tauri android build --aab",
"android:build:apk": "pnpm tauri android build --apk",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"tauri": "node scripts/run-tauri.mjs",
"bench:local": "pwsh scripts/run-local-benchmark.ps1",
"bench:local:full": "pwsh scripts/run-local-benchmark.ps1 -Profile full -Runs 5"
},
"dependencies": {
"@noble/ciphers": "2.1.1",
"@noble/curves": "2.0.1",
"@noble/hashes": "2.0.1",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-barcode-scanner": "^2.4.5",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.1",
"framer-motion": "^12.42.2",
"lucide-react": "^1.22.0",
"nostr-tools": "2.24.1",
"pako": "2.1.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/cli": "^2.11.4",
"@types/pako": "2.0.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.6.0",
"playwright-core": "^1.61.1",
"prettier": "^3.9.4",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.2",
"vitest": "^4.1.9"
}
}