-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.08 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.08 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
{
"name": "quillpilot",
"version": "1.0.0",
"description": "AI-powered writing assistant for content creators",
"main": "public/electron.js",
"scripts": {
"start": "electron .",
"dev:web": "concurrently \"npm run dev:react\" \"npm run dev:python\"",
"dev:desktop": "concurrently \"npm run dev:react-quiet\" \"npm run dev:python\" \"wait-on http://localhost:3000 http://localhost:5001 && electron .\"",
"dev:react": "react-scripts start",
"dev:react-quiet": "BROWSER=none react-scripts start",
"dev:python": "cd src/python && uvicorn app:app --reload --port 5001",
"build": "react-scripts build",
"build:electron": "npm run build && electron-builder",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"keywords": [
"electron",
"react",
"ai",
"writing",
"content-creation"
],
"author": "QuillPilot Team",
"license": "MIT",
"homepage": "./",
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"autoprefixer": "^10.4.16",
"axios": "^1.6.0",
"electron": "^28.0.0",
"electron-is-dev": "^3.0.1",
"lucide-react": "^0.303.0",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0",
"react-scripts": "5.0.1",
"tailwindcss": "^3.3.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"concurrently": "^8.2.2",
"electron-builder": "^24.6.4",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.quillpilot.app",
"productName": "QuillPilot",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"src/electron/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.productivity"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}