-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.01 KB
/
package.json
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
{
"private": true,
"name": "Hask",
"description": "Search as you type",
"version": "1.5.0",
"author": "Bayangmbe Mounmo <[email protected]>",
"main": "app/background.js",
"asar": true,
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:all": "nextron build --all",
"build:linux": "nextron build --linux --x64",
"build:mac_x64": "nextron build --mac --x64",
"build:mac_arm64": "nextron build --mac --arm64",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.deepfile.deepfile",
"linux": {
"target": "deb",
"icon": "resources/icon.png"
},
"extraResources": [
{
"from": "./resources/top_bar/",
"to": "top_bar/",
"filter": [
"**/*"
]
}
],
"extraFiles": [
{
"from": "scripts/",
"to": "scripts/",
"filter": "**/*"
}
],
"mac": {
"target": [
"dmg",
"pkg"
],
"icon": "resources/icon.icns"
},
"win": {
"icon": "resources/icon.ico"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.18.0",
"axios": "^1.6.7",
"cohere-ai": "^7.8.0",
"dompurify": "^3.1.0",
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0",
"groq-sdk": "^0.3.0",
"html-react-parser": "^5.1.10",
"next-themes": "^0.2.1",
"openai": "^4.29.0",
"prismjs": "^1.29.0",
"react-redux": "^9.1.0",
"react-syntax-highlighter": "^15.5.0",
"redux": "^5.0.1",
"showdown": "^2.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@electron/notarize": "^2.2.1",
"autoprefixer": "^10.4.7",
"cssnano": "^6.1.1",
"electron": "^20.1.0",
"electron-builder": "^23.3.3",
"electron-packager": "^17.1.2",
"next": "^12.2.5",
"nextron": "^8.2.0",
"postcss": "^8.4.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.1.8"
}
}