-
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.31 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.31 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": "spotcode-sns",
"version": "0.1.0",
"private": true,
"description": "スポット紐付け型の開発者 SNS(Electron + Web)",
"main": "electron/main.js",
"scripts": {
"start:web": "npx http-server src -p 8080 -o",
"start:electron": "ELECTRON_RUN_AS_NODE= electron .",
"build:electron": "electron-builder",
"build:electron:mac": "electron-builder --mac",
"build:electron:win": "electron-builder --win",
"build:electron:linux": "electron-builder --linux",
"release": "electron-builder --publish always",
"release:mac": "electron-builder --mac --publish always",
"cap:sync": "cap update ios && (test -L ios/App/App/public || (rm -rf ios/App/App/public && ln -s ../../../src ios/App/App/public)) && echo 'ios/App/App/public is symlinked to src/'",
"cap:open:ios": "cap open ios",
"cap:add:ios": "cap add ios"
},
"author": "hrmcngs",
"license": "MIT",
"build": {
"appId": "io.github.hrmcngs.spotcode",
"productName": "spotcode-sns",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"electron/**/*",
"src/**/*",
"package.json",
"!src/sw.js",
"!**/*.map"
],
"publish": [
{
"provider": "github",
"owner": "hrmcngs",
"repo": "spotcode-sns"
}
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.social-networking",
"identity": null
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network",
"maintainer": "hrmcngs <78349683+hrmcngs@users.noreply.github.com>"
}
},
"dependencies": {
"@capacitor/core": "^6.1.2",
"@capacitor/ios": "^6.1.2",
"electron-updater": "^6.8.9"
},
"devDependencies": {
"@capacitor/cli": "^8.4.0",
"electron": "^42.0.0",
"electron-builder": "^26.0.0"
},
"overrides": {
"@electron/get": {
"undici": "^7.28.0"
},
"node-gyp": {
"undici": "^6.27.0"
}
}
}