-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.69 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
{
"name": "linkling-server",
"version": "0.2.1",
"private": true,
"description": "JSON-based bookmark server",
"author": {
"name": "Jacob Padgett",
"email": "jacobapadgett@gmail.com",
"url": "https://github.com/jpadgett314/"
},
"type": "module",
"main": "src/index-electron.js",
"scripts": {
"start": "node src/index.js",
"electron:dev": "electron .",
"dist:nsis": "electron-builder --win nsis",
"dist:flatpak": "electron-builder --linux flatpak"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"async-mutex": "^0.5.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"multer": "^1.4.5-lts.2",
"write-file-atomic": "^7.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"electron": "^41.1.1",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "com.linkling.server",
"productName": "Linkling",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!dist/**",
"!.git/**"
],
"win": {
"target": [
"nsis"
],
"icon": "assets/icon-256.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": [
"flatpak"
],
"icon": "assets/icon-512.png",
"category": "Utility",
"maintainer": "Jacob Padgett <jacobapadgett@gmail.com>"
},
"flatpak": {
"runtime": "org.freedesktop.Platform",
"runtimeVersion": "25.08",
"sdk": "org.freedesktop.Sdk",
"finishArgs": [
"--share=ipc",
"--share=network",
"--socket=x11",
"--socket=wayland",
"--device=dri",
"--filesystem=home"
]
}
}
}