-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.38 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.38 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
{
"name": "power-interview",
"private": false,
"version": "1.5.2",
"description": "AI-powered live interview assistant",
"author": "Power Interview",
"main": "electron-dist/index.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"electron:build-main": "tsc -p tsconfig.electron.json",
"electron:dev-hide": "npm run electron:build-main && concurrently \"cross-env BROWSER=none npm run dev -- --port 5173 --strictPort\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .\"",
"electron:dev-show": "npm run electron:build-main && concurrently \"cross-env BROWSER=none npm run dev -- --port 5173 --strictPort\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron . --disable-content-protection\"",
"electron:build": "npm run electron:build-main && npm run build && electron-builder",
"lint": "eslint .",
"format": "prettier --write . && eslint --fix .",
"start": "npm run 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": "ai.power-interview.client",
"productName": "Power Interview",
"copyright": "Copyright ©2026 Power Interview",
"publish": [
{
"provider": "github",
"owner": "PowerInterviewAI",
"repo": "client",
"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 needs microphone access to transcribe your voice during interviews.",
"NSScreenRecordingUsageDescription": "Power Interview 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",
"artifactName": "PowerInterview-Setup-${version}.exe"
}
}
}