-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.71 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
{
"name": "mathfx",
"version": "0.3.7",
"private": false,
"author": {
"name": "Creator-SN",
"url": "https://github.com/Creator-SN"
},
"description": "Formula recognition client powered by OpenAI-compatible Chat APIs",
"repository": {
"type": "git",
"url": "https://github.com/Creator-SN/MathFX"
},
"keywords": [
"llm",
"chat api",
"formula recognition"
],
"scripts": {
"dev": "node scripts/electron-vite.cjs dev",
"build": "electron-vite build",
"start": "node scripts/electron-vite.cjs preview",
"electron:build": "npm run build && electron-builder --publish never",
"electron:serve": "node scripts/electron-vite.cjs dev",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win --publish never",
"build:mac": "npm run build && electron-builder --mac --publish never",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"version:win": "powershell build/updateVersion.ps1"
},
"main": "./out/main/index.js",
"dependencies": {
"@creatorsn/vfluent3": "^0.3.90",
"@langchain/core": "^0.3.72",
"@langchain/langgraph": "^0.2.40",
"@langchain/openai": "^0.5.10",
"adm-zip": "^0.5.5",
"axios": "^0.21.1",
"core-js": "^3.6.5",
"crypto-js": "^4.0.0",
"dom-to-svg": "^0.12.2",
"electron-screenshots": "^0.6.2",
"fs-extra": "^9.1.0",
"ini": "^2.0.0",
"katex": "^0.16.21",
"lowdb": "^1.0.0",
"npm-check": "^5.9.2",
"pinia": "^2.1.7",
"request": "^2.88.2",
"sass-loader": "^8.0.2",
"vue": "^3.4.21",
"vue-router": "4.5.1"
},
"devDependencies": {
"@electron-toolkit/utils": "^4.0.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.4.21",
"electron": "^37.10.3",
"electron-builder": "^25.1.8",
"electron-vite": "^4.0.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"sass": "^1.71.1",
"vite": "^5.1.6"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-undef": "off",
"no-unused-vars": "off",
"no-empty": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}