-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.56 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.56 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": "holograph",
"productName": "HoloGraph",
"version": "1.0.0",
"description": "全像星图 - 个人知识图谱化工具",
"main": "dist-electron/electron/main.js",
"author": "CloverIris",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.node.json && tsc -p tsconfig.preload.json && vite build && electron-builder",
"build:win": "tsc && vite build && electron-builder --win",
"build:mac": "tsc && vite build && electron-builder --mac",
"build:linux": "tsc && vite build && electron-builder --linux",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.68",
"@ai-sdk/openai": "^3.0.52",
"@xyflow/react": "^12.3.0",
"ai": "^6.0.156",
"d3": "^7.9.0",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.0",
"lucide-react": "^0.454.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^10.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitejs/plugin-react": "^4.3.2",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"eslint": "^9.12.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.12",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6"
},
"build": {
"appId": "com.cloveriris.holograph",
"productName": "HoloGraph",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"resources/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "resources/icon.ico"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "resources/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "resources/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}