forked from xishang0128/sparkle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.77 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.77 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
113
114
115
116
117
118
119
{
"name": "sparkle",
"version": "1.26.4",
"description": "Sparkle",
"main": "./out/main/index.js",
"author": {
"name": "xishang0128",
"email": "xishang02@gmail.com"
},
"homepage": "https://github.com/xishang0128/sparkle",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
"prepare": "node scripts/prepare.ts",
"updater": "node scripts/updater.ts",
"checksum": "node scripts/checksum.ts",
"telegram": "node scripts/telegram.ts",
"dev": "electron-vite dev",
"postinstall": "electron-builder install-app-deps",
"build:win": "electron-vite build && electron-builder --publish never --win",
"build:mac": "electron-vite build && electron-builder --publish never --mac",
"build:linux": "electron-vite build && electron-builder --publish never --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@heroui-v3/react": "npm:@heroui/react@latest",
"@heroui-v3/styles": "npm:@heroui/styles@latest",
"@heroui/react": "2.8.10",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"@types/crypto-js": "^4.2.2",
"adm-zip": "^0.5.17",
"axios": "^1.15.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.20",
"express": "^5.2.1",
"file-icon": "^6.0.0",
"file-icon-info": "^1.1.1",
"iconv-lite": "^0.7.2",
"is-cidr": "^6.0.3",
"is-ip": "^5.0.1",
"koffi": "^2.16.0",
"qrcode.react": "^4.2.0",
"webdav": "^5.9.0",
"ws": "^8.20.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/adm-zip": "^0.5.8",
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.6.0",
"@types/pubsub-js": "^1.8.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"cron-validator": "^1.4.0",
"driver.js": "^1.4.0",
"electron": "^41.2.1",
"electron-builder": "26.8.2",
"electron-vite": "^5.0.0",
"electron-window-state": "^5.0.3",
"eslint": "^10.2.0",
"eslint-plugin-react": "^7.37.5",
"form-data": "^4.0.5",
"framer-motion": "12.36.0",
"lodash": "^4.18.1",
"meta-json-schema": "^1.19.23",
"monaco-yaml": "^5.4.1",
"nanoid": "^5.1.9",
"next-themes": "^0.4.6",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"pubsub-js": "^1.9.5",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-error-boundary": "^6.1.1",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-monaco-editor": "^0.59.0",
"react-router-dom": "^7.14.1",
"react-virtuoso": "^4.18.5",
"recharts": "^3.8.1",
"swr": "^2.4.1",
"tailwindcss": "^4.2.2",
"tar": "^7.5.13",
"tsx": "^4.21.0",
"types-pac": "^1.0.3",
"typescript": "^5.9.3",
"vite": "npm:rolldown-vite@^7.3.1",
"vite-plugin-monaco-editor": "1.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron"
],
"patchedDependencies": {
"vite-plugin-monaco-editor@1.1.0": "patches/vite-plugin-monaco-editor@1.1.0.patch"
},
"overrides": {
"vite": "npm:rolldown-vite@^7.3.1"
}
},
"packageManager": "pnpm@10.15.0"
}