-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 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
{
"name": "scientific-toolkit",
"private": true,
"version": "1.0.0",
"author": "FOPS Inc.",
"description": "A powerful scientific toolkit for researchers and engineers.",
"type": "module",
"main": "dist-electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"build:win": "vite build && electron-builder --win",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"chart.js": "^4.4.1",
"electron-store": "^8.1.0",
"katex": "^0.16.9",
"lucide-react": "^0.344.0",
"mathjs": "^12.3.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"rehype-katex": "^7.0.0",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@electron-toolkit/utils": "^4.0.0",
"@eslint/js": "^9.9.1",
"@types/katex": "^0.16.7",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"electron": "^28.1.0",
"electron-builder": "^24.13.0",
"eslint": "^9.9.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.11",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"vite": "^6.3.5",
"vite-plugin-electron": "^0.15.5",
"vite-plugin-electron-renderer": "^0.14.1"
},
"build": {
"appId": "com.fopsinc.scientifictoolkit",
"productName": "Scientific Toolkit",
"copyright": "Copyright © 2025 FOPS Inc.",
"win": {
"target": "nsis",
"icon": "public/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "public/favicon.ico",
"uninstallerIcon": "public/favicon.ico"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"node_modules/**/*"
],
"extraResources": [
{
"from": "public",
"to": "public"
}
]
}
}