This repository was archived by the owner on Jan 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3 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
{
"name": "obsidian-client",
"displayName": "Obsidian Client",
"private": true,
"version": "0.0.1-snapshot.0",
"license": "MIT",
"description": "Minecraft, Modularized.",
"main": "dist/electron/main/main.js",
"readme": "README.md",
"author": {
"name": "Thorminate",
"email": "thorwaag11@gmail.com",
"url": "https://github.com/thorminate"
},
"repository": {
"type": "git",
"url": "https://github.com/thorminate/obsidian-client"
},
"scripts": {
"app:dev": "node scripts/dev.js",
"app:build": "node scripts/build.js",
"app:preview": "node scripts/preview.js"
},
"build": {
"productName": "Obsidian Client",
"compression": "maximum",
"removePackageScripts": true,
"nodeGypRebuild": false,
"buildDependenciesFromSource": false,
"directories": {
"output": "./releases/temp",
"buildResources": "./src/assets"
},
"files": [
"./dist"
],
"extraMetadata": {
"main": "./dist/electron/main/main.js"
},
"win": {
"artifactName": "../${version}/win/${productName} ${version} Windows.${ext}",
"icon": "./src/assets/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"deleteAppDataOnUninstall": true,
"license": "./LICENSE.md",
"runAfterFinish": true,
"oneClick": false,
"uninstallDisplayName": "Obsidian Client",
"uninstallerIcon": "./src/assets/icon.ico",
"installerIcon": "./src/assets/icon.ico",
"installerHeaderIcon": "./src/assets/icon.ico",
"shortcutName": "Obsidian Client"
},
"mac": {
"artifactName": "../${version}/mac/${productName} ${version} Mac.${ext}",
"target": {
"target": "dmg",
"arch": [
"universal"
]
},
"icon": "./src/assets/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": true
},
"linux": {
"artifactName": "../${version}/linux/${productName} ${version} Linux-${arch}.${ext}",
"desktop": {
"StartupNotify": false,
"Encoding": "UTF-8"
},
"category": "Gaming",
"target": {
"target": "AppImage",
"arch": [
"arm64",
"x64"
]
},
"icon": "./src/assets/icon.png"
}
},
"dependencies": {
"electron": "^19.0.6",
"electron-updater": "^6.3.9",
"vue": "^3.2.25"
},
"devDependencies": {
"@clack/prompts": "^0.9.0",
"@types/electron": "^1.4.38",
"@vitejs/plugin-vue": "^2.3.3",
"concurrently": "^7.6.0",
"electron-builder": "^23.1.0",
"picocolors": "^1.1.1",
"tree-kill": "^1.2.2",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vue-tsc": "^0.34.7"
}
}