This repository was archived by the owner on Nov 17, 2021. 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
92 lines (92 loc) · 2.7 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.7 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
{
"name": "homebase-admins",
"productName": "Homebase Admin",
"version": "0.1.2",
"description": "Homebase is an intelligent apartment management platform, incubated out of the Think Big Partners Incubator, that simplifies the management of critical functions in the tenant / landlord relationship, while unlocking the power of the Internet of Things and building automation.With Homebase, communication is conversational, immediate and seamless, like text messaging. Collecting payments is automatic and paying rent is as simple as tapping a notification. Managing maintenance is stress-free, accountable and provides a comprehensive building perspective at a glance to the property manager. All of these functions are tightly integrated with commercially available smart devices and building automation systems to give residents and property managers full control of their units locks, thermostats, lights and other connected devices and use them to complete everyday tasks.",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/HomebaseAI/electron-app.git"
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist-mac": "electron-builder --mac",
"dist-win": "electron-builder --win",
"publish-mac": "electron-builder --mac -p always",
"publish-win": "electron-builder --win -p always"
},
"build": {
"appId": "ai.homebase.mac.electron",
"publish": [
{
"provider": "github",
"owner": "HomebaseAI",
"repo": "electron-app"
}
],
"mac": {
"target": [
"dmg",
"mas"
],
"icon": "assets/icons/mac/icon.icns"
},
"dmg": {
"icon": "assets/icons/mac/icon.icns",
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"appx",
"NSIS"
],
"icon": "assets/icons/win/icon.ico"
},
"appx": {
"applicationId": "ai.homebase.win.electron",
"displayName": "Homebase Admin",
"publisherDisplayName": "Homebase"
}
},
"keywords": [
"Homebase",
"Smart",
"Apartment",
"Connected",
"Apartment",
"Apartments",
"Smart",
"Home",
"Smart",
"Apartment",
"iot",
"internet",
"things",
"rent",
"maintenance",
"payments"
],
"author": "Homebase AI",
"license": "MIT",
"devDependencies": {
"electron": "^1.7.12",
"electron-builder": "^20.0.8",
"electron-is-dev": "^0.3.0"
},
"dependencies": {
"electron-log": "^2.2.14",
"electron-updater": "^2.20.1"
}
}