-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.81 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 3.81 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "gitcanopy",
"version": "1.2.2",
"description": "Electron-based Git visualizer that displays commit history as an interactive graph with semantic coloring, Stable graphs and high FPS virtualized rendering",
"main": "dist/main/main/main.js",
"homepage": "./",
"author": "TainYanTun",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/TainYanTun"
},
"repository": {
"type": "git",
"url": "https://github.com/TainYanTun/GitCanopy.git"
},
"private": true,
"scripts": {
"dev": "bun run build:preload && concurrently \"bun run dev:renderer\" \"bun run dev:main\"",
"dev:renderer": "vite",
"dev:main": "bun run build:preload && tsc -p src/main/tsconfig.json && electron dist/main/main/main.js --inspect=5858",
"build": "bun run build:renderer && bun run build:preload && bun run build:main",
"build:renderer": "vite build",
"build:main": "tsc -p src/main/tsconfig.json",
"build:preload": "tsc -p src/preload/tsconfig.json",
"electron": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"lint": "bun run lint:js && bun run lint:css",
"lint:js": "eslint src --ext .ts,.tsx --ignore-pattern '**/*.test.ts'",
"lint:css": "stylelint \"**/*.{css,scss,tsx,jsx}\" --ignore-path .gitignore",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf node_modules dist release && bun install"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/d3": "^7.4.3",
"@types/moment": "^2.13.0",
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.6.13",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-virtualized-auto-sizer": "^1.0.8",
"@types/react-window": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"bun-types": "^1.0.14",
"concurrently": "^8.2.2",
"electron": "^27.1.3",
"electron-builder": "^24.8.1",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.32",
"postcss-html": "^1.8.0",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-tailwindcss": "^1.0.0",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.2",
"vite": "^5.0.5",
"vite-plugin-electron": "^0.28.1"
},
"dependencies": {
"antd": "^5.12.2",
"chokidar": "3.6.0",
"d3": "^7.8.5",
"electron-log": "^5.4.3",
"electron-updater": "^6.6.2",
"lru-cache": "^11.2.4",
"moment": "^2.30.1",
"node-fetch": "2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-virtualized-auto-sizer": "^2.0.0",
"react-window": "^2.2.3"
},
"build": {
"appId": "com.gitcanopy.app",
"productName": "GitCanopy",
"directories": {
"output": "release",
"buildResources": "assets"
},
"files": [
"dist/**/*",
"assets/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
},
"publish": {
"provider": "github",
"owner": "TainYanTun",
"repo": "GitCanopy"
}
},
"engines": {
"node": ">=18.0.0"
}
}