-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.17 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.17 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "flicky",
"version": "1.2.0",
"description": "Cross-platform AI companion — voice-driven, screen-aware assistant with a pointing cursor overlay",
"main": "dist/main/main/index.js",
"author": {
"name": "Flicky Contributors",
"email": "noreply@flicky.app"
},
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run dev:main\" \"npm run dev:renderer\"",
"dev:main": "tsc -p tsconfig.main.json --watch",
"dev:renderer": "vite dev",
"build": "npm run build:main && npm run build:renderer",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"start": "VITE_DEV_SERVER=1 electron dist/main/main/index.js",
"start:prod": "electron dist/main/main/index.js",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc -p tsconfig.main.json --noEmit && tsc -p tsconfig.renderer.json --noEmit",
"package": "npm run build && electron-builder",
"package:win": "npm run build && electron-builder --win",
"package:mac": "npm run build && electron-builder --mac",
"package:linux": "npm run build && electron-builder --linux",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"posthog-node": "^4.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ws": "^8.5.0",
"@electron/notarize": "^2.5.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.0.0",
"electron": "^33.0.0",
"electron-builder": "^25.0.0",
"eslint": "^9.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-electron": "^0.28.0"
},
"build": {
"appId": "com.flicky.app",
"productName": "Flicky",
"directories": {
"output": "release",
"buildResources": "assets"
},
"files": [
"dist/**/*",
"assets/**/*"
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon.icns",
"target": [
{ "target": "dmg", "arch": ["x64", "arm64"] },
{ "target": "zip", "arch": ["x64", "arm64"] }
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"notarize": true,
"entitlements": "assets/entitlements.mac.plist",
"entitlementsInherit": "assets/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Flicky needs microphone access for voice commands.",
"NSScreenCaptureUsageDescription": "Flicky captures your screen to provide context-aware AI assistance."
}
},
"win": {
"icon": "assets/icon.ico",
"target": [
{ "target": "nsis", "arch": ["x64", "arm64"] }
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"linux": {
"icon": "assets/icons",
"target": ["AppImage", "deb"],
"category": "Utility"
},
"publish": {
"provider": "github",
"owner": "jvaught01",
"repo": "flicky"
}
}
}