-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.04 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
{
"name": "onefinance",
"productName": "OneFinance",
"version": "1.1.0",
"description": "A local-first personal finance management cross-platform desktop application.",
"author": {
"name": "OneFinance Team",
"email": "onefinanceteam@outlook.com"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/HarshPanchal01/OneFinance.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/HarshPanchal01/OneFinance/issues"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"dev": "vite",
"build": "vue-tsc && vite build && electron-builder",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.ts,.tsx --fix",
"lint:check": "eslint . --ext .vue,.js,.ts,.tsx",
"typecheck": "vue-tsc --noEmit",
"dist:mac": "npm run build -- --mac -p never",
"dist:win": "npm run build -- --win -p never",
"dist:linux": "npm run build -- --linux -p never",
"dist:all": "npm run build -- -mwl -p never"
},
"dependencies": {
"@primevue/themes": "^4.5.4",
"better-sqlite3": "^12.9.0",
"chart.js": "^4.5.1",
"pinia": "^3.0.4",
"primeicons": "^7.0.0",
"primevue": "^4.5.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/compiler-sfc": "^3.5.26",
"autoprefixer": "^10.4.23",
"electron": "^39.8.5",
"electron-builder": "^26.8.1",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.6.2",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.2",
"vite-plugin-electron": "^0.28.6",
"vite-plugin-electron-renderer": "^0.14.5",
"vue": "^3.5.32",
"vue-tsc": "^3.2.7"
},
"overrides": {
"tough-cookie": "^4.1.3",
"form-data": "^4.0.0",
"qs": "^6.14.1",
"tar": "^7.5.11",
"file-type": "^21.3.1",
"@tootallnate/once": "^3.0.1",
"phin": "^3.7.1",
"yargs-parser": "^21.1.1"
},
"main": "dist-electron/main.js"
}