-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.33 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
{
"name": "hoyo_gacha",
"displayName": "HoYo.Gacha",
"version": "1.2.10",
"description": "An unofficial tool for managing and analyzing your miHoYo gacha records",
"author": "lgou2w <lgou2w@hotmail.com>",
"homepage": "https://github.com/lgou2w/HoYo.Gacha#readme",
"repository": "https://github.com/lgou2w/HoYo.Gacha",
"bugs": "https://github.com/lgou2w/HoYo.Gacha/issues",
"license": "MIT OR Apache-2.0",
"private": "true",
"type": "module",
"packageManager": "pnpm@11.17.0+sha512.cca3cea332ad254bb84145f966d19f4879615210346fc92c79a047f23a0d7b3cca3c3792f0076ba1f1831d277efbcf0a9119b31a9a60eca7fb3d6231f331ef72",
"engines": {
"node": "^22 || >=24",
"pnpm": ">=10"
},
"scripts": {
"clean": "pnpm app:clean && pnpm tauri:clean",
"dev": "concurrently --raw --kill-others \"pnpm:app:dev\" \"pnpm:tauri:dev\"",
"build": "pnpm app:build && pnpm tauri:build",
"build:cicd": "pnpm app:build:cicd && pnpm tauri:build:cicd",
"test": "pnpm app:test && pnpm tauri:test",
"lint": "pnpm app:lint && pnpm tauri:lint",
"app:clean": "rimraf dist",
"app:dev": "cross-env NODE_ENV=development vite",
"app:build": "cross-env NODE_ENV=production tsc && vite build",
"app:build:cicd": "cross-env NODE_ENV=production tsc && vite build --mode cicd",
"app:test": "vitest run --passWithNoTests",
"app:lint": "eslint --max-warnings 0 --report-unused-disable-directives .",
"tauri:clean": "cargo clean",
"tauri:dev": "cross-env RUST_BACKTRACE=1 RUST_LOG=trace tauri dev --features prod-develop",
"tauri:build": "tauri build",
"tauri:build:cicd": "tauri build --features prod-cicd",
"tauri:test": "cargo test",
"tauri:lint": "cargo check"
},
"dependencies": {
"@fluentui/react-components": "9.74.4",
"@fluentui/react-icons": "2.0.333",
"@fluentui/react-motion-components-preview": "0.15.6",
"@tanstack/react-query": "5.101.4",
"@tanstack/react-query-devtools": "5.101.4",
"@tanstack/react-router": "1.169.1",
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-clipboard-manager": "2.3.2",
"@tauri-apps/plugin-process": "2.3.1",
"@tauri-apps/plugin-shell": "2.3.5",
"dayjs": "1.11.21",
"i18next": "26.3.6",
"immer": "11.1.15",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-hook-form": "7.82.0",
"react-i18next": "17.0.11",
"react-virtuoso": "4.18.11",
"use-immer": "0.11.0"
},
"devDependencies": {
"@babel/core": "7.29.7",
"@babel/preset-react": "7.29.7",
"@babel/preset-typescript": "7.29.7",
"@eslint/compat": "2.1.0",
"@griffel/tag-processor": "1.0.16",
"@griffel/vite-plugin": "0.1.16",
"@rolldown/plugin-babel": "0.2.3",
"@stylistic/eslint-plugin": "5.10.0",
"@tauri-apps/cli": "2.11.4",
"@types/babel__core": "7.20.5",
"@types/node": "22.19.17",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.4",
"concurrently": "10.0.3",
"cross-env": "10.1.0",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"rimraf": "6.1.3",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"overrides": {
"@tanstack/react-router": "1.169.1"
}
}