-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.31 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "siltflow",
"private": true,
"version": "3.0.1",
"description": "Language-learning desktop app — read PDFs, look up words, build vocabulary with spaced repetition",
"desktopName": "siltflow",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:oxlint": "oxlint --type-aware",
"check:knip": "knip || true",
"check:deps": "dependency-cruiser electron src",
"check:quick": "pnpm check:oxlint && pnpm check:knip",
"audit:deps": "pnpm audit --audit-level=high || true",
"audit:secrets": "gitleaks detect --source . --no-git --verbose",
"audit:all": "pnpm check:oxlint && pnpm check:deps && pnpm audit:secrets && pnpm check:knip && pnpm audit:deps",
"ci:check": "pnpm lint && pnpm typecheck && pnpm test",
"update:latest": "pnpm update --latest",
"install:deb": "version=$(node -p \"require('./package.json').version\") && deb=\"release/$version/Siltflow-Linux-$version.deb\" && sudo dpkg -i \"$deb\""
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-scroll-area": "^1.2.18",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-tooltip": "^1.2.16",
"@tanstack/react-virtual": "^3.14.9",
"allotment": "^1.20.5",
"better-sqlite3": "^13.0.2",
"bindings": "^1.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"electron-updater": "^6.8.9",
"fuse.js": "7.5.0",
"lucide-react": "^1.27.0",
"openai": "^7.1.0",
"pdfjs-dist": "^6.2.108",
"prebuild-install": "^7.1.3",
"react": "^19.2.8",
"react-arborist": "^3.16.0",
"react-dom": "^19.2.8",
"react-pdf-highlighter-plus": "^1.3.1",
"recharts": "^3.10.1",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-fsrs": "^5.4.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@catppuccin/tailwindcss": "^1.0.0",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"dependency-cruiser": "^18.1.0",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"electron-devtools-installer": "^4.0.0",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"jsdom": "^30.0.1",
"knip": "^6.29.0",
"oxlint": "^1.76.0",
"oxlint-tsgolint": "^7.0.2001",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vite-plugin-electron": "^1.1.0",
"vite-plugin-electron-renderer": "^1.0.0",
"vitest": "^4.1.10"
},
"author": {
"name": "MYQ"
},
"homepage": "https://github.com/TYBLHQY/siltflow",
"main": "dist-electron/main.js"
}