-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "whycavalry",
"version": "1.0.0",
"description": "WhyCavalry — AI chat per Cavalry motion graphics",
"main": "electron-main.js",
"scripts": {
"start": "electron .",
"dev": "NODE_ENV=development electron .",
"build": "electron-builder",
"make-icon": "bash scripts/make-icon.sh",
"mcp": "node dist/index.js"
},
"build": {
"appId": "io.whycavalry.app",
"productName": "WhyCavalry",
"directories": {
"output": "dist-app"
},
"mac": {
"category": "public.app-category.graphics-design",
"icon": "build/icon.icns",
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
}
]
},
"files": [
"electron-main.js",
"preload.js",
"renderer/**",
"assets/**",
"!src/**",
"!dist/**",
"!node_modules/.cache/**"
]
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.0",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"typescript": "^5.0.0"
}
}