-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.08 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
81
82
83
84
{
"name": "reposynergy",
"version": "1.0.0",
"description": "A GitHub and Gitee repository synchronization tool",
"main": "dist/main/main.js",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"electron:dev": "vite build && electron .",
"electron:build": "vite build && electron-builder",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"keywords": [
"github",
"gitee",
"sync",
"electron"
],
"author": "zh4men9",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"echarts": "^5.6.0",
"electron-store": "^8.1.0",
"element-plus": "^2.5.6",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@octokit/rest": "^21.1.0",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^20.17.16",
"@vitejs/plugin-vue": "^4.5.2",
"@vitest/coverage-v8": "latest",
"@vitest/ui": "latest",
"@testing-library/vue": "latest",
"@testing-library/jest-dom": "latest",
"electron": "^28.2.0",
"electron-builder": "^24.9.1",
"esbuild": "0.18.20",
"jsdom": "latest",
"pinia": "^2.3.1",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.5.2",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "latest",
"vue": "^3.5.13",
"vue-tsc": "^1.8.27"
},
"build": {
"appId": "com.reposynergy.app",
"productName": "RepoSynergy",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage"
],
"category": "Development"
}
}
}