-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.66 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
{
"name": "cryptomons",
"description": "Just click, we'll talk later!",
"author": "Grrr <grrr@returntomonkey.org>",
"version": "0.1.0",
"engines": {
"node": ">=22"
},
"private": true,
"type": "module",
"main": "electron-main.cjs",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"electron:dev": "vite dev & electron .",
"electron:build": "vite build && electron-builder"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"chart.js": "^4.4.4",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-chart-financial": "^0.2.1",
"date-fns": "^4.1.0",
"pinia": "^2.2.2",
"pinia-plugin-persistedstate": "^4.0.1",
"vue": "^3.5.5",
"vue-chartjs": "^5.3.1",
"vue-router": "4",
"vue3-toastify": "^0.2.3",
"vue3-tour": "^1.0.2"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/chart.js": "^2.9.41",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"npm-run-all2": "^6.2.0",
"typescript": "^5.6.2",
"vite": "^5.3.1",
"vue-tsc": "^2.0.21",
"vue3-select-component": "^0.5.2"
},
"build": {
"appId": "com.cryptomons.app",
"icon": "dist/favicon",
"files": [
"dist",
"electron-main.cjs"
],
"directories": {
"buildResources": "build"
},
"win": {
"icon": "dist/favicon.ico",
"target": [
"nsis",
"portable"
]
}
}
}