-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "livesplit",
"main": "dist/bundle.js",
"type": "module",
"scripts": {
"build:core": "node buildCore.js",
"build:core:release": "node buildCore.js --release",
"build:core:deploy": "node buildCore.js --max-opt --nightly",
"lint": "eslint src",
"publish": "vite build",
"serve": "vite",
"tauri:icons": "tauri icon src/assets/icon.png",
"tauri:build-html": "vite build --mode tauri",
"tauri:watch": "tauri dev",
"tauri:publish": "tauri build"
},
"dependencies": {
"idb": "^8.0.0",
"lucide-react": "^0.575.0",
"markdown-it": "^14.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-resizable": "^3.0.4",
"react-sidebar": "^3.0.2",
"react-toastify": "^11.0.3"
},
"devDependencies": {
"@babel/plugin-transform-explicit-resource-management": "^7.28.0",
"@tauri-apps/cli": "^2.2.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.3.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-resizable": "^3.0.3",
"@types/react-sidebar": "^3.0.2",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^10.0.1",
"favicons": "^7.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.24.0",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.0.3"
},
"prettier": {
"quoteProps": "consistent",
"trailingComma": "all",
"tabWidth": 4,
"semi": true,
"singleQuote": false
}
}