-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.4 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.4 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
{
"name": "hfmodelo",
"private": true,
"version": "1.0.0-beta.2",
"description": "Ferramenta moderna de modelagem de banco de dados com IA",
"author": "Haffly Studios",
"license": "AGPL-3.0",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"electron:dev": "electron .",
"electron:build": "npm run build && electron-builder"
},
"dependencies": {
"@reactflow/core": "^11.11.4",
"idb-keyval": "^6.2.2",
"lucide-react": "^0.525.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reactflow": "^11.11.4",
"uuid": "^11.1.0",
"zustand": "^5.0.4"
},
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"electron": "^41.0.2",
"electron-builder": "^26.8.1",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"vite": "^6.2.0"
},
"build": {
"appId": "com.hafflystudios.hfmodelo",
"productName": "HFModelo",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"win": {
"target": [
"portable",
"nsis"
],
"icon": "src/public/icon.png"
}
}
}