-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.54 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.54 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
{
"name": "timelens",
"private": true,
"version": "1.4.3",
"authors": [
"Shan Wenxiao"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "npm run gen:tray-icons && tauri dev",
"tauri:build": "npm run generate:icons && npm run gen:tray-icons && tauri build",
"tauri:build:msi": "npm run generate:icons && npm run gen:tray-icons && tauri build --bundles msi",
"tauri:build:nsis": "npm run generate:icons && npm run gen:tray-icons && tauri build --bundles nsis",
"tauri:build:all": "npm run generate:icons && npm run gen:tray-icons && npm run tauri:build:msi && npm run tauri:build:nsis",
"generate:icons": "node generate-msix-icons.mjs",
"gen:tray-icons": "node generate-tray-icons.mjs",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"ext:install": "npm --prefix vscode-extension install",
"ext:build": "npm --prefix vscode-extension run build",
"ext:watch": "npm --prefix vscode-extension run watch",
"ext:package": "npm --prefix vscode-extension run package",
"ext:package:pre": "npm --prefix vscode-extension run package:pre"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-global-shortcut": "^2",
"@tauri-apps/plugin-notification": "^2",
"@tauri-apps/plugin-shell": "^2",
"@tauri-apps/plugin-updater": "^2",
"clsx": "^2.1.0",
"i18next": "^23.10.0",
"lucide-react": "^0.344.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-router-dom": "^6.22.0",
"recharts": "^2.12.0",
"sharp": "^0.34.5",
"zustand": "^4.5.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.2",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.18",
"esbuild": "^0.28.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^8.0.14",
"vitest": "^4.1.7"
}
}