-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.88 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
91
92
93
94
95
{
"name": "paper2corecode",
"version": "0.1.4",
"description": "Desktop app to analyze papers and extract core code with DeepSeek / Jiekou / MiniMax / GLM / Xiaomi MiMo / Kimi",
"author": {
"name": "lemonmindyes",
"email": "lemonmindyes@users.noreply.github.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lemonmindyes/paper2corecode.git"
},
"main": "dist/main/main.js",
"scripts": {
"dev": "concurrently -k \"npm run dev:renderer\" \"npm run dev:electron\"",
"dev:renderer": "vite",
"dev:electron": "wait-on http://localhost:5173 && tsc -p tsconfig.main.json && tsc -p tsconfig.preload.json && electron .",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json && tsc -p tsconfig.preload.json",
"build": "npm run build:renderer && npm run build:main",
"dist": "npm run build && electron-builder --publish never",
"dist:win": "npm run build && electron-builder --win --publish never",
"dist:mac": "npm run build && electron-builder --mac --publish never",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"dist:linux": "npm run build && electron-builder --linux --publish never"
},
"dependencies": {
"katex": "^0.16.45",
"lucide-react": "^1.14.0",
"pdf-parse": "^2.4.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.6",
"concurrently": "^9.1.0",
"electron": "^33.2.1",
"electron-builder": "^26.8.1",
"jsdom": "^29.1.1",
"typescript": "^5.6.3",
"vite": "^6.0.3",
"vitest": "^4.1.5",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.paper2corecode.app",
"productName": "Paper2CoreCode",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json"
],
"win": {
"signAndEditExecutable": false,
"artifactName": "Paper2CoreCode-${version}-windows-${arch}.${ext}",
"target": [
"nsis",
"zip"
]
},
"mac": {
"identity": null,
"artifactName": "Paper2CoreCode-${version}-macos-${arch}.${ext}",
"target": [
"dmg",
"zip"
],
"category": "public.app-category.productivity"
},
"linux": {
"artifactName": "Paper2CoreCode-${version}-linux-${arch}.${ext}",
"maintainer": "lemonmindyes <lemonmindyes@users.noreply.github.com>",
"target": [
"AppImage",
"deb"
],
"category": "Science"
}
}
}