-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.92 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
{
"name": "vibegit",
"version": "1.0.0",
"description": "A local, reversible project safety net for AI-assisted coding.",
"main": "out/main/index.js",
"private": true,
"type": "module",
"packageManager": "pnpm@11.7.0",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=9"
},
"scripts": {
"dev": "electron-vite dev",
"preview:desktop": "electron-vite build && electron .",
"preview:browser": "electron-vite build && tsx scripts/browser-server.ts",
"dev:cli": "tsx apps/cli/src/index.ts",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run tests/e2e",
"test:desktop": "playwright test --config playwright.config.ts",
"test:cli-build": "node scripts/cli-build-smoke.mjs",
"test:cli-e2e": "tsx scripts/cli-e2e.ts",
"demo": "tsx scripts/demo.ts",
"build:cli": "tsup apps/cli/src/index.ts --format esm --platform node --target node22 --out-dir dist/cli --clean",
"build": "tsc --noEmit && electron-vite build && tsup apps/cli/src/index.ts --format esm --platform node --target node22 --out-dir dist/cli --clean",
"dist:win": "pnpm build && electron-builder --win nsis"
},
"build": {
"appId": "com.vibegit.desktop",
"productName": "VibeGit",
"directories": {
"output": "release",
"buildResources": "build"
},
"electronDist": "node_modules/electron/dist",
"files": [
"out/**/*",
"dist/**/*",
"package.json"
],
"extraResources": [
{
"from": "assets/branding",
"to": "assets/branding"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
],
"icon": "build/icon.ico",
"artifactName": "VibeGit-Setup-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"include": "build/installer.nsh",
"createDesktopShortcut": false,
"createStartMenuShortcut": true,
"shortcutName": "VibeGit",
"deleteAppDataOnUninstall": false
}
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@playwright/test": "1.61.1",
"@swc/core": "1.15.43",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.13.3",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.2.0",
"electron": "43.1.0",
"electron-builder": "^26.15.3",
"electron-vite": "5.0.0",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"jsdom": "29.1.1",
"lucide-react": "1.24.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"tsx": "4.23.0",
"tsup": "8.5.1",
"typescript": "6.0.3",
"typescript-eslint": "8.63.0",
"vite": "7.3.6",
"vitest": "4.1.10"
}
}