-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.33 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
83
84
85
86
87
{
"name": "lockin-ai",
"description": "A focus companion that helps you lock in, stay on task, and grow your garden.",
"author": "LOCK//IN AI",
"version": "0.1.0",
"main": "electron/main.cjs",
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"electron": "electron .",
"electron:dev": "concurrently -k -n next,electron -c blue,magenta \"next dev -p 3000\" \"wait-on tcp:3000 && cross-env NODE_ENV=development NEXT_DEV_SERVER_URL=http://localhost:3000 electron .\"",
"electron:build": "next build && electron-builder",
"dist:win": "next build && electron-builder --win --publish never"
},
"dependencies": {
"get-windows": "^9.3.0",
"koffi": "^3.0.1",
"lucide-react": "^0.575.0",
"motion": "^12.40.0",
"next": "^16.2.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tw-animate-css": "^1.3.4",
"ws": "^8.21.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^22.16.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"electron": "^42.2.0",
"electron-builder": "^26.8.1",
"eslint": "^9.32.0",
"eslint-config-next": "^16.2.6",
"postcss": "^8.5.0",
"tailwindcss": "^4.3.0",
"typescript": "^5.8.3",
"wait-on": "^8.0.1"
},
"build": {
"appId": "ai.lockin.app",
"productName": "LOCK//IN AI",
"directories": {
"output": "release"
},
"files": [
"out/**/*",
"electron/**/*",
"node_modules/get-windows/**/*",
"node_modules/ws/**/*",
"node_modules/koffi/**/*"
],
"extraResources": [
{
"from": "extension",
"to": "extension",
"filter": ["**/*"]
}
],
"asarUnpack": [
"**/node_modules/get-windows/**/*.node",
"**/node_modules/koffi/**/*.node"
],
"mac": {
"target": "dmg",
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"extendInfo": {
"CFBundleName": "LOCKIN AI",
"CFBundleDisplayName": "LOCK//IN AI"
}
},
"win": {
"target": "nsis",
"icon": "build/icon.png",
"signAndEditExecutable": false
},
"linux": {
"target": "AppImage",
"icon": "build/icon.png"
}
}
}