-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.45 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 4.45 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
137
138
139
{
"name": "power-interview-ai",
"private": false,
"version": "1.5.2",
"description": "AI-powered live interview assistant",
"author": "VectorLeap Pulse Innovation LTD",
"main": "electron-dist/index.js",
"type": "module",
"packageManager": "pnpm@11.1.3",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"electron:build-main": "tsc -p tsconfig.electron.json",
"electron:dev-hide": "pnpm electron:build-main && concurrently \"cross-env BROWSER=none pnpm dev -- --port 5173 --strictPort\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .\"",
"electron:dev-show": "pnpm electron:build-main && concurrently \"cross-env BROWSER=none pnpm dev -- --port 5173 --strictPort\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron . --disable-content-protection\"",
"electron:build": "pnpm electron:build-main && pnpm build && electron-builder",
"lint": "eslint .",
"format": "prettier --write . && eslint --fix .",
"start": "pnpm electron:dev-hide"
},
"dependencies": {
"@mohtasham/md-to-docx": "^2.6.1",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.20",
"axios": "^1.13.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-audio-loopback": "^1.0.6",
"electron-store": "^11.0.2",
"electron-updater": "^6.7.3",
"hast-util-sanitize": "^5.0.2",
"highlight.js": "^11.11.1",
"lucide-react": "^0.563.0",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-qrcode-pretty": "^3.3.1",
"react-router-dom": "^7.13.0",
"rehype-highlight": "^7.0.2",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.1.0",
"electron-builder": "^26.4.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-simple-import-sort": "^10.0.0",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"wait-on": "^9.0.3"
},
"build": {
"appId": "com.powerinterviewai.client-app",
"productName": "Power Interview AI",
"copyright": "Copyright ©2026 VectorLeap Pulse Innovation LTD",
"publish": [
{
"provider": "github",
"owner": "PowerInterviewAI",
"repo": "client-app",
"releaseType": "release"
}
],
"files": [
"electron-dist/**/*",
"dist/**/*",
"package.json"
],
"directories": {
"buildResources": "build",
"output": "release"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "build/icon.ico"
},
"mac": {
"target": [
"dmg",
"zip"
],
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.inherit.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Power Interview AI needs microphone access to transcribe your voice during interviews.",
"NSScreenRecordingUsageDescription": "Power Interview AI needs screen recording access to capture system audio during interviews."
}
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"deleteAppDataOnUninstall": false,
"installerLanguages": [
"en_US"
],
"shortcutName": "Power Interview AI",
"artifactName": "PowerInterviewAI-Setup-${version}.exe"
}
}
}