-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.04 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "sailor",
"version": "1.8.1",
"description": "SaiLoR - a tool to assist reviewers during Systematic Literature Reviews (SLR).",
"author": "",
"license": "GPL-3.0-only",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"dev:electron": "cross-env ELECTRON=1 vite",
"build": "tsc -b && vite build",
"build:electron": "cross-env ELECTRON=1 npm run build && electron-builder --publish never",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "cross-env ELECTRON=1 npm run build && playwright test",
"typecheck": "tsc -b --noEmit",
"icon": "electron scripts/make-icon.cjs",
"check:wiki": "node scripts/check-wiki-links.js"
},
"dependencies": {
"electron-updater": "^6.3.9",
"immer": "^10.1.1",
"pdf-lib": "^1.17.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-pdf": "^9.2.1",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.5",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.3.4",
"cross-env": "^7.0.3",
"electron": "^43.1.0",
"electron-builder": "^26.15.3",
"jsdom": "^25.0.1",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-electron": "^0.29.0",
"vitest": "^3.2.4"
},
"build": {
"appId": "io.github.gram21.sailor",
"productName": "SaiLoR",
"asar": true,
"compression": "maximum",
"electronLanguages": [
"en-US"
],
"files": [
"dist/**/*",
"dist-electron/**/*",
"build/icon.png",
"!**/*.map",
"!node_modules/**/*"
],
"directories": {
"output": "release",
"buildResources": "build"
},
"afterPack": "scripts/afterPack.cjs",
"publish": {
"provider": "github",
"owner": "Gram21",
"repo": "SaiLoR"
},
"mac": {
"target": {
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
"icon": "build/icon.icns",
"artifactName": "${productName}-${version}-macos-${arch}.${ext}"
},
"dmg": {
"window": {
"width": 540,
"height": 380
},
"iconSize": 128,
"contents": [
{
"x": 140,
"y": 200,
"type": "file"
},
{
"x": 400,
"y": 200,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "nsis",
"icon": "build/icon.png",
"artifactName": "${productName}-${version}-windows-${arch}.${ext}"
},
"linux": {
"target": "AppImage",
"icon": "build/icon.png",
"artifactName": "${productName}-${version}-linux-${arch}.${ext}"
}
},
"allowScripts": {
"esbuild@0.25.12": true
}
}