-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.75 KB
/
package.json
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
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "titan",
"private": true,
"proxy": "http://localhost:5173",
"version": "2.0.4",
"type": "module",
"main": "dist-electron/main.js",
"description": "Titan",
"author": "ArrushC",
"configFolderPath": "C:\\Titan",
"configFilePath": "C:\\Titan\\Titan.config.json",
"targetsFilePath": "C:\\Titan\\Titan.targets.txt",
"logFilePath": "C:\\Titan\\Titan.app.log",
"svnLogsCacheFilePath": "C:\\Titan\\Titan.svnLogsCache.json",
"commitLiveResponsesFilePath": "C:\\Titan\\Titan.commitLiveResponses.json",
"scripts": {
"start": "npm run server:start",
"dev": "cross-env EDGE_CHROMIUM=1 NODE_ENV=development vite",
"client:build": "vite build",
"client:build:watch": "vite build --watch",
"client:lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"client:preview": "vite preview",
"server:start": "cross-env NODE_ENV=development node server/server.js",
"server:dev": "nodemon server/server.js",
"electron:start": "electron .",
"electron:dev": "cross-env NODE_ENV=development electron .",
"electron:build:win": "electron-builder --win",
"electron:build:win:nsis": "electron-builder --win nsis",
"electron:build:win:portable": "electron-builder --win portable",
"electron:build:mac": "electron-builder --mac",
"electron:build:linux": "electron-builder --linux",
"build:win": "vite build && electron-builder --win nsis",
"publish:win": "electron-builder --win nsis --publish always",
"build:mac": "vite build && electron-builder --mac",
"publish:mac": "electron-builder --mac --publish always",
"build:linux": "vite build && electron-builder --linux",
"publish:linux": "electron-builder --linux --publish always"
},
"dependencies": {
"@chakra-ui/react": "^3.2.5",
"@emotion/react": "^11.14.0",
"async": "^3.2.6",
"chokidar": "^4.0.3",
"chroma-js": "^3.1.2",
"compression": "^1.7.5",
"electron-updater": "^6.3.9",
"express": "^4.21.2",
"lodash": "^4.17.21",
"next-themes": "^0.4.4",
"node-fetch": "^3.3.2",
"node-svn-ultimate": "^1.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-textarea-autosize": "^8.5.6",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"use-context-selector": "^2.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/lodash": "^4.17.14",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"electron": "^33.3.1",
"electron-builder": "^25.1.8",
"electron-devtools-installer": "^4.0.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"nodemon": "^3.1.9",
"rollup-plugin-visualizer": "^5.14.0",
"vite": "^6.0.7",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6"
},
"build": {
"productName": "Titan",
"appId": "com.arrushc.titan",
"files": [
"dist/**/*",
"dist-electron/**/*",
"icons/**/*",
"public/**/*",
"server/**/*",
"package.json",
"shutdown.html",
"splash.html"
],
"directories": {
"output": "release"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "icons/Titan.ico"
},
"mac": {
"target": "dir",
"icon": "icons/Titan.icns"
},
"linux": {
"target": "AppImage",
"icon": "icons/Titan.png"
},
"nsis": {
"runAfterFinish": true,
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": "always",
"createStartMenuShortcut": true,
"perMachine": false,
"oneClick": false
},
"publish": [
{
"provider": "github",
"owner": "ArrushC",
"repo": "titan"
}
]
}
}