This repository was archived by the owner on Feb 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.29 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.29 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
{
"name": "AccessHub",
"description": "Desktop application of Access Community",
"version": "1.0.0",
"private": true,
"license": "CC BY-NC-ND 4.0",
"author": {
"email": "tech@access-community.fr",
"name": "Access Community",
"url": "https://access-community.fr"
},
"asar": true,
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "vite build --config ./packages/renderer/vite.config.js",
"compile": "cross-env MODE=production npm run build && electron-builder --config electron-builder.json5 --config.asar=false",
"compile:asar": "dotenv -- cross-env MODE=production npm run build && electron-builder --config electron-builder.json5 --config.asar=true",
"compile:nobuild": "cross-env MODE=production electron-builder --config electron-builder.json5 --config.asar=false",
"test": "npm run test:main && npm run test:preload && npm run test:renderer && npm run test:e2e",
"test:e2e": "npm run build && vitest run",
"test:main": "vitest run -r packages/main --passWithNoTests",
"test:preload": "vitest run -r packages/preload --passWithNoTests",
"test:renderer": "vitest run -r packages/renderer --passWithNoTests",
"watch": "node scripts/watch.mjs",
"lint": "eslint . --ext js,mjs,cjs,ts,mts,cts,vue",
"typecheck:main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck:preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck:renderer": "vue-tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck:main && npm run typecheck:preload && npm run typecheck:renderer",
"postinstall": "cross-env ELECTRON_RUN_AS_NODE=1 electron scripts/update-electron-vendors.mjs",
"format": "npx prettier --write \"**/*.{js,mjs,cjs,ts,mts,cts,vue,json}\""
},
"devDependencies": {
"@types/node": "20.1.3",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@vitejs/plugin-vue": "4.2.3",
"@vue/test-utils": "2.3.2",
"autoprefixer": "^10.4.14",
"cross-env": "7.0.3",
"electron": "28.2.3",
"electron-builder": "^24.9.1",
"electron-devtools-installer": "^3.2.0",
"eslint": "8.40.0",
"eslint-plugin-vue": "9.12.0",
"happy-dom": "9.17.0",
"nano-staged": "0.8.0",
"playwright": "1.33.0",
"postcss": "^8.4.31",
"sass": "^1.62.1",
"simple-git-hooks": "2.8.1",
"tailwindcss": "^3.3.2",
"typescript": "5.0.4",
"unplugin-auto-expose": "0.0.4",
"vite": "4.5.2",
"vitest": "0.31.0",
"vue": "3.3.2",
"vue-tsc": "1.6.4"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@kyvg/vue3-notification": "^2.9.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.3.0",
"electron-settings": "^4.0.2",
"electron-updater": "5.3.0",
"pinia": "^2.0.36",
"ts-japi": "^1.8.0",
"vue-final-modal": "^4.4.2",
"vue-router": "^4.2.0",
"vue3-popper": "^1.5.0",
"vue3-simple-typeahead": "^1.0.11"
}
}