-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.91 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.91 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
{
"name": "crackcoder",
"version": "1.0.0",
"description": "Invisible AI tool for solving Coding Questions during technical interviews",
"main": "dist/main.js",
"scripts": {
"start": "npm run build && electron .",
"build": "tsc && webpack --config webpack.config.js",
"watch": "concurrently \"tsc -w\" \"webpack --config webpack.config.js --watch\"",
"dev": "concurrently \"npm run watch\" \"electron .\"",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --mac",
"dist:win": "npm run build && electron-builder --win"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-react": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"css-loader": "^6.8.1",
"electron": "^28.0.0",
"electron-builder": "^24.13.3",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"typescript": "^5.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"dotenv": "^16.4.7",
"openai": "^4.87.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"build": {
"appId": "com.crackcoder.app",
"productName": "CrackCoder",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
],
"icon": "build/icon.icns"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "build/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development"
}
}
}