-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.18 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
{
"name": "electron-app",
"version": "1.0.0",
"description": "A minimal Electron application with TypeScript",
"productName": "electron-app",
"productAppId": "appId",
"electronWindowTitle": "electron-app",
"companyName": "electron-app",
"author": "example.com",
"homepage": "https://www.electronjs.org",
"appWidth": 1366,
"appHeight": 768,
"env": {
"VITE_DEV_SERVER_HOST": "localhost",
"VITE_DEV_SERVER_PORT": 3000,
"VITE_DEV_SERVER_SCHEMA": "http",
"NODE_ENV": "production",
"APP_UPDATE_REPO": "https://github.com/typerefinery-ai/electron-app-base",
"APP_UPDATE_INTERVAL": "1 hour",
"CRASH_REPORTED_ENABLED": true,
"CRASH_REPORTER_SUBMIT_URL": "https://o1271501.ingest.sentry.io/api/6463906/minidump/?sentry_key=11633f20925d4be2ba055e901f7d95e3",
"ERROR_REPORT_ENABLED": true,
"ERROR_REPORT_SENTURY_DSN": "https://[email protected]/6463906",
"ERROR_REPORT_LEVEL": [
"error",
"war,ning",
"info",
"debug"
],
"LOCAL_SERVICES_PATH": "./services",
"LOCAL_SERVICES_USERDATA_PATH": "services"
},
"main": "./out/main/index.js",
"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": "electron-vite preview",
"dev:apps-tabs": "npm run dev --prefix apps/tabs",
"dev:apps-chat": "npm run dev --prefix apps/chat",
"dev:electron": "electron-vite dev",
"dev": "concurrently -k npm:dev:*",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:linux": "npm run build && electron-builder --linux --config"
},
"dependencies": {
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^2.0.0",
"@particle/unpack-file": "^3.0.2",
"@sentry/electron": "^4.15.1",
"@sentry/integrations": "^7.91.0",
"electron-log": "^5.0.2",
"electron-updater": "^6.1.1",
"electron-window-state": "^5.0.3",
"eventemitter3": "^5.0.1",
"express": "^4.21.2",
"find-process": "^1.4.8",
"follow-redirects": "^1.15.9",
"i18next": "^23.7.11",
"i18next-fs-backend": "^2.3.1",
"jquery": "^3.7.1",
"pidusage-tree": "^2.0.5",
"portfinder": "^1.0.32",
"split-grid": "^1.0.11",
"update-electron-app": "^3.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^1.0.1",
"@electron-toolkit/eslint-config-ts": "^1.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@types/node": "^18.17.5",
"concurrently": "^8.2.2",
"electron": "^25.6.0",
"electron-builder": "^24.6.3",
"electron-vite": "^1.0.27",
"eslint": "^8.47.0",
"prettier": "^3.0.2",
"sass": "^1.69.5",
"typescript": "^5.1.6",
"vite": "^4.4.9"
}
}