-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 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
{
"name": "markdownflows",
"productName": "MarkdownFlows",
"version": "1.0.0",
"description": "AI-powered Mermaid diagram editor - Create and edit diagrams with natural language",
"main": ".vite/build/main.js",
"scripts": {
"start": "npm run clean && electron-forge start",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"clean": "rm -rf out .webpack .vite"
},
"keywords": [
"mermaid",
"diagrams",
"flowchart",
"ai",
"openai",
"electron",
"markdown"
],
"author": {
"name": "Emad Ibrahim",
"email": "eibrahim@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dotnetfactory/markdownflows.git"
},
"devDependencies": {
"@electron-forge/cli": "^7.9.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.9.0",
"@electron-forge/plugin-fuses": "^7.9.0",
"@electron-forge/plugin-vite": "^7.9.0",
"@electron/fuses": "^1.8.0",
"@types/node": "^24.7.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@eslint/compat": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"electron": "^38.2.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3",
"vite": "^6.3.6"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-squirrel-startup": "^1.0.1",
"lucide-react": "^0.544.0",
"mermaid": "^11.12.1",
"openai": "^6.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1"
}
}