-
-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.13 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 4.13 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "murmure",
"private": true,
"version": "1.10.1",
"type": "module",
"scripts": {
"dev": "vite",
"postinstall": "pnpm build:smartmic",
"build": "tsc && vite build && pnpm build:smartmic",
"build:smartmic": "vite build -c vite.smartmic.config.ts",
"preview": "vite preview",
"tauri": "tauri",
"i18n:extract": "npx i18next-cli extract",
"lint": "eslint . --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clippy": "cd src-tauri && cargo clippy",
"clippy:fix": "cd src-tauri && cargo clippy --fix",
"fmt": "cd src-tauri && cargo fmt",
"test": "echo \"No tests configured\"",
"eval:dictionary": "cd src-tauri && cargo test --release dictionary_eval -- --ignored --nocapture",
"docs:serve": "python3 -m mkdocs serve",
"docs:build": "python3 -m mkdocs build"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lobehub/icons": "^4.1.0",
"@lobehub/ui": "^4.32.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-router": "^1.157.18",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-autostart": "~2.5.1",
"@tauri-apps/plugin-dialog": "~2.6.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "~2.4.2",
"@tauri-apps/plugin-updater": "~2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"framer-motion": "^12.29.2",
"i18next": "^25.8.0",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.563.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"react-number-format": "^5.4.4",
"react-simple-code-editor": "^0.14.1",
"react-toastify": "^11.0.5",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/router-plugin": "^1.157.18",
"@tauri-apps/cli": "^2.11.1",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"i18next-cli": "^1.46.4",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.5",
"vite-plugin-checker": "^0.12.0"
},
"pnpm": {
"overrides": {
"minimatch@<4.0.0": "3.1.5",
"flatted": ">=3.4.0",
"dompurify": ">=3.4.11",
"uuid@11": "~11.1.1",
"lodash": ">=4.18.0",
"lodash-es": ">=4.18.0",
"mermaid": ">=11.15.0",
"js-cookie": ">=3.0.7",
"@babel/core": ">=7.29.6 <8.0.0",
"js-yaml": ">=4.2.0 <5.0.0",
"ajv@<6.14.0": ">=6.14.0 <7.0.0",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3 <3.0.0",
"brace-expansion@>=5.0.0 <5.0.6": ">=5.0.6 <6.0.0"
},
"packageExtensions": {
"@lobehub/icons": {
"dependencies": {
"es-toolkit": "^1.44.0"
}
}
}
}
}