-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.86 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.86 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
{
"name": "rishi-electron-app",
"version": "1.0.0",
"description": "An Electron application with React and TypeScript",
"main": "./dist/main/index.js",
"author": "example.com",
"homepage": "https://electron-vite.org",
"files": [
"dist/**/*",
"package.json",
"node_modules/**/*",
"!node_modules/.ignored/**",
"!node_modules/.cache/**"
],
"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": "npm run typecheck:node && npm run typecheck:web",
"start": "npx electron-vite preview --outDir=dist",
"dev": "npx electron-vite dev --outDir=dist",
"make": "npx electron-vite build --outDir=dist && npx electron-forge make",
"publish": "bun run scripts/publish.ts publish",
"package": "bun run scripts/publish.ts package",
"build": "NODE_ENV=production npx electron-vite build --mode production",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-router": "^1.133.15",
"@xmldom/xmldom": "^0.7.13",
"adm-zip": "^0.5.16",
"cors": "^2.8.5",
"electron-squirrel-startup": "^1.0.1",
"event-emitter": "^0.3.5",
"events": "^3.3.0",
"express": "^4.21.2",
"jszip": "^3.10.1",
"lucide-react": "^0.546.0",
"magic-bytes.js": "^1.12.1",
"md5": "^2.3.0",
"path-webpack": "0.0.3",
"priorityqueuejs": "^2.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-dropzone": "^14.3.8",
"react-spinners": "^0.17.0",
"react-swipeable": "^7.0.2",
"react-toastify": "^10.0.6",
"serve-index": "^1.9.1",
"serve-static": "^1.16.2",
"update-electron-app": "^3.1.1",
"xml-js": "^1.6.11",
"zustand": "^5.0.8"
},
"devDependencies": {
"@electron-forge/cli": "^7.10.2",
"@electron-forge/maker-deb": "^7.10.2",
"@electron-forge/maker-rpm": "^7.10.2",
"@electron-forge/maker-squirrel": "^7.10.2",
"@electron-forge/maker-zip": "^7.10.2",
"@electron-forge/plugin-auto-unpack-natives": "^7.10.2",
"@electron-forge/plugin-fuses": "^7.10.2",
"@electron-forge/publisher-s3": "^7.10.2",
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^1.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/fuses": "^1.8.0",
"@tanstack/react-router-devtools": "^1.133.15",
"@tanstack/router-vite-plugin": "^1.133.15",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/adm-zip": "^0.5.7",
"@types/event-emitter": "^0.3.5",
"@types/events": "^3.0.3",
"@types/express": "^4.17.23",
"@types/localforage": "0.0.34",
"@types/md5": "^2.3.6",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.0",
"@types/serve-index": "^1.9.4",
"@types/serve-static": "^1.15.9",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/ui": "^1.6.1",
"@xmldom/xmldom": "^0.7.5",
"autoprefixer": "^10.4.21",
"babel-plugin-react-compiler": "1.0.0",
"core-js": "^3.18.3",
"electron": "^28.3.3",
"electron-devtools-installer": "^4.0.0",
"electron-icon-builder": "^2.0.1",
"electron-vite": "^2.3.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-vitest-globals": "^1.5.0",
"event-emitter": "^0.3.5",
"jszip": "^3.7.1",
"localforage": "^1.10.0",
"marks-pane": "^1.0.9",
"path-webpack": "0.0.3",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vitest": "^1.6.1"
}
}