forked from Prat011/free-cluely
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 4.1 KB
/
package.json
File metadata and controls
159 lines (159 loc) · 4.1 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "interview-coder",
"version": "1.0.0",
"main": "./dist-electron/main.js",
"scripts": {
"clean": "rimraf dist dist-electron",
"dev": "vite",
"build": "npm run clean && tsc && vite build",
"preview": "vite preview",
"postinstall": "cross-env SHARP_IGNORE_GLOBAL_LIBVIPS=1 npm rebuild sharp",
"electron:dev": "tsc -p electron/tsconfig.json && cross-env NODE_ENV=development electron .",
"electron:build": "tsc -p electron/tsconfig.json && cross-env NODE_ENV=production electron .",
"app:dev": "concurrently \"npm run dev -- --port 5180\" \"wait-on http://localhost:5180 && npm run electron:dev\"",
"app:build": "npm run build && electron-builder",
"watch": "tsc -p electron/tsconfig.json --watch",
"start": "npm run app:dev",
"dist": "npm run app:build"
},
"build": {
"appId": "com.electron.meeting-notes",
"productName": "Meeting Notes Coder",
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json",
"node_modules/**/*"
],
"directories": {
"output": "release",
"buildResources": "assets"
},
"extraResources": [
{
"from": "assets/",
"to": "assets/"
}
],
"mac": {
"category": "public.app-category.productivity",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "assets/icons/mac/icon.icns",
"hardenedRuntime": true,
"entitlements": "assets/entitlements.mac.plist"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "assets/icons/win/icon.ico",
"requestedExecutionLevel": "asInvoker"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"icon": "assets/icons/png/",
"category": "Office"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false
},
"publish": [
{
"provider": "github",
"owner": "ibttf",
"repo": "interview-coder-frontend"
}
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/color": "^4.2.0",
"@types/diff": "^6.0.0",
"@types/electron": "^1.4.38",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/screenshot-desktop": "^1.12.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"electron-is-dev": "^3.0.1",
"postcss": "^8.4.49",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"wait-on": "^8.0.1"
},
"dependencies": {
"@google/genai": "^0.12.0",
"@google/generative-ai": "^0.2.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-toast": "^1.2.2",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"diff": "^7.0.0",
"form-data": "^4.0.1",
"lucide-react": "^0.460.0",
"react": "^18.3.1",
"react-code-blocks": "^0.1.6",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.6.1",
"screenshot-desktop": "^1.15.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.4",
"tesseract.js": "^5.0.5",
"uuid": "^11.0.3"
}
}