-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
101 lines (101 loc) · 2.44 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "friday",
"author": "Ichinoe <shiinahiiragi@outlook.com>",
"description": "AI agent powered by LLM.",
"version": "1.0.1",
"main": "public/electron.js",
"homepage": "./",
"private": true,
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.4",
"@mui/joy": "^5.0.0-beta.22",
"@mui/material": "^5.15.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"dotenv": "^16.4.1",
"electron-is-dev": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-markdown": "^9.0.1",
"react-scripts": "5.0.1",
"react-scroll-to-bottom": "^4.2.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "concurrently --raw 'npm run dev:react' 'wait-on http://localhost:3000 && npm run dev:app'",
"build": "npm run pack:react && npm run pack:app",
"dev:react": "GENERATE_SOURCEMAP=false react-scripts start",
"dev:app": "electron .",
"pack:react": "rm -rf ./build && react-scripts build",
"pack:app": "rm -rf ./dist && electron-builder -c.extraMetadata.main=build/electron.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^8.2.2",
"electron": "^28.1.3",
"electron-builder": "^24.9.1",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.electron.friday",
"productName": "FRIDAY",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"win": {
"target": [
{
"target": "portable"
},
{
"target": "nsis"
}
]
},
"linux": {
"target": [
{
"target": "appImage"
},
{
"target": "deb"
}
],
"category": "Utility"
},
"mac": {
"target": "dmg"
}
}
}