forked from VariableThe/PaperCache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.41 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
96
{
"name": "papercache",
"private": true,
"version": "0.1.5",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:ui": "vitest",
"preview": "vite preview",
"package": "npm run build && electron-builder --mac --win --linux"
},
"build": {
"appId": "com.variablethe.papercache",
"productName": "PaperCache",
"directories": {
"output": "release/"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"mac": {
"icon": "public/icon.png",
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "public/icon.png",
"target": [
"nsis",
"zip"
]
},
"linux": {
"icon": "public/icon.png",
"category": "Office",
"target": [
"AppImage",
"deb"
]
}
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@lezer/highlight": "^1.2.3",
"@uiw/react-codemirror": "^4.25.10",
"marked": "^18.0.4",
"mathjs": "^15.2.0",
"openai": "^6.39.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-force-graph-2d": "^1.29.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"electron": "^42.3.0",
"electron-builder": "^26.8.1",
"esbuild": "^0.28.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12",
"vite-plugin-electron": "^0.29.1",
"vite-plugin-electron-renderer": "^0.14.7",
"vitest": "^4.1.7"
}
}