-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 KB
/
package.json
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
{
"name": "elementum",
"version": "1.0.0",
"description": "A simple Markdown editor",
"main": "main.js",
"scripts": {
"start": "concurrently \"npm run dev\" \"electron .\"",
"dev": "vite",
"build": "electron-builder"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/postcss": "4.0.0",
"@tailwindcss/postcss7-compat": "2.2.17",
"highlight.js": "11.11.1",
"katex": "0.16.21",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-markdown": "9.0.3",
"react-syntax-highlighter": "15.6.1",
"rehype-highlight": "7.0.1",
"rehype-katex": "7.0.1",
"remark-gfm": "4.0.0",
"remark-math": "6.0.0",
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "^10.0.0",
"concurrently": "9.1.2",
"electron": "^26.0.0",
"electron-builder": "^25.1.8",
"postcss": "8.5.1",
"react-devtools": "6.1.0",
"tailwindcss": "^3.0.0",
"vite": "^4.0.0"
},
"build": {
"appId": "com.elementum.app",
"productName": "Elementum",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"assets/**/*",
"src/**/*",
"main.js",
"preload.js",
"index.html",
"postcss.config.js",
"tailwind.config.js",
"vite.config.js",
"package.json",
"!node_modules"
],
"win": {
"target": "nsis",
"icon": "assets/text-editor-icon-4.ico",
"artifactName": "${name} Setup ${version}.${ext}"
}
}
}