-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.97 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.97 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
{
"name": "recall",
"productName": "Recall",
"version": "1.0.0",
"description": "AI-powered clipboard manager with smart search and reminders",
"main": "dist/main/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\"",
"dev:renderer": "vite",
"dev:main": "tsc -p tsconfig.main.json && electron .",
"build": "tsc -p tsconfig.main.json && vite build",
"start": "electron .",
"package": "npm run build && electron-builder build --mac"
},
"build": {
"appId": "com.recall.app",
"productName": "Recall",
"files": [
"dist/**/*",
"package.json"
],
"asar": true,
"mac": {
"category": "public.app-category.productivity",
"target": {
"target": "dmg",
"arch": "arm64"
},
"icon": "build/icon.icns",
"extendInfo": {
"LSUIElement": true,
"LSBackgroundOnly": false
}
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"format": "UDBZ"
},
"compression": "maximum",
"asarUnpack": [
"**/*.node"
]
},
"dependencies": {
"@types/react-syntax-highlighter": "^15.5.13",
"better-sqlite3": "^11.5.0",
"fuse.js": "^7.0.0",
"react-syntax-highlighter": "^16.1.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@electron/rebuild": "^4.0.2",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"electron": "^33.0.2",
"electron-builder": "^26.4.0",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}