-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.68 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
{
"name": "kitsune",
"version": "0.10.0-beta",
"description": "Kitsune — AI-native browser built on Electron",
"main": "dist-electron/main/index.js",
"author": {
"name": "Kitsune Contributors (Amol Sriprasadh)",
"email": "amol.unique@gmail.com"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"electron:dev": "vite",
"build": "vite build",
"electron:build": "vite build && electron-builder",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.0",
"electron-store": "^8.2.0",
"immer": "^10.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.0.19",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.6"
},
"build": {
"appId": "com.kitsune.browser",
"productName": "Kitsune",
"directories": {
"output": "release"
},
"publish": {
"provider": "github",
"releaseType": "prerelease"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"icon": "assets/logo.icns",
"category": "public.app-category.productivity",
"target": ["dmg", "zip"]
},
"win": {
"icon": "assets/logo.ico",
"target": ["nsis", "portable"]
},
"linux": {
"icon": "assets/logo.png",
"target": ["AppImage", "deb"]
}
}
}