-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.28 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
{
"name": "openchat-client",
"author": "Porthorian",
"version": "0.0.4",
"description": "OpenChat desktop client",
"license": "GPL-2.0-only",
"main": "./out/main/index.js",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=23.9.0"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"test:security": "node --test src/renderer/src/utils/messageFormatting.security.test.ts src/main/openGraphText.security.test.ts",
"typecheck:app": "vue-tsc --noEmit -p tsconfig.json",
"typecheck:build": "tsc --noEmit -p tsconfig.build-scripts.json",
"typecheck": "yarn run typecheck:app && yarn run typecheck:build",
"stamp_build": "node build/stamp-build.js",
"dist": "node build/run-builder-with-stamped-package.js dist",
"pack": "node build/run-builder-with-stamped-package.js pack"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"electron-updater": "^6.6.2",
"pinia": "^3.0.4",
"primevue": "^4.5.5",
"vue": "^3.5.32"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.6",
"electron": "^41.2.1",
"electron-vite": "^5.0.0",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vue-tsc": "^3.2.7"
}
}