-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.65 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
{
"name": "GameClock",
"version": "2.4.0",
"description": "Track your play time with your friends",
"main": "./out/main/index.js",
"author": "github.com/Didiloy",
"homepage": "https://github.com/Didiloy/GameClock",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "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": "latest",
"@electron-toolkit/utils": "latest",
"@vueuse/core": "^11.1.0",
"chart.js": "latest",
"chartjs-plugin-zoom": "^2.0.1",
"firebase": "latest",
"markdown-it": "^14.1.0",
"pinia": "latest",
"primeicons": "latest",
"primevue": "v3-stable",
"quantize": "^1.0.2",
"steamgriddb": "latest",
"vue-i18n": "^9.13.1",
"vue-router": "latest"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.1",
"@rushstack/eslint-patch": "^1.6.1",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/eslint-config-prettier": "^9.0.0",
"electron": "^29.1.6",
"electron-builder": "^24.9.1",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"less": "^4.2.0",
"prettier": "^3.1.1",
"tippy.js": "^6.3.7",
"vite": "^5.0.11",
"vue": "^3.4.5",
"vue3-calendar-heatmap": "^2.0.5"
}
}