-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.95 KB
/
package.json
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
{
"name": "memex",
"version": "0.0.2",
"description": "Import data from Google Takeout to search and analyze",
"main": "main.js",
"scripts": {
"compilestyles": "sass src/scss/style.scss:src/css/style.css",
"start": "npm run compilestyles && electron .",
"pack": "electron-builder --dir",
"build-help": "electron-builder --help",
"build-mac": "npm run compilestyles && electron-builder --mac",
"build-linux": "npm run compilestyles && electron-builder --linux",
"build-win": "npm run compilestyles && electron-builder --windows",
"build-all": "npm run compilestyles && electron-builder --windows --linux",
"publish": "electron-builder --win --linux -p always"
},
"repository": "https://github.com/dylan-mitchell/memex",
"keywords": [
"Memex",
"Google",
"Takeout"
],
"author": "dylan-mitchell",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"bulma": "^0.8.0",
"bulma-dashboard": "^0.3.1",
"chart.js": "^2.9.3",
"esm": "^3.2.25",
"leaflet": "^1.6.0",
"leaflet.heat": "github:dylan-mitchell/leaflet.heat",
"moment": "^2.24.0",
"vis-data": "^6.3.5",
"vis-timeline": "^7.1.0"
},
"devDependencies": {
"electron": "^8.2.4",
"electron-builder": "^22.3.2"
},
"build": {
"appId": "com.dylan-mitchell.memex.electron",
"directories": {
"buildResources": "build"
},
"extraResources": [
{
"from": "dataserver",
"to": "memex/dataserver",
"filter": [
"**/dataserver*",
"!*.db"
]
}
],
"mac": {
"icon": "build/memex.png",
"target": [
"dmg"
]
},
"dmg": {
"sign": false
},
"linux": {
"maintainer": "dylanjmitchell0@gmail.com",
"category": "Utility",
"icon": "build/memex.png",
"synopsis": "Import data from Google Takeout to search and analyze",
"description": "A memex is a conceptual data storage and retrieval system outlined by Vannevar Bush. Although this project does not live up to this initial concept, it can still be used as a tool to search and analyze your digital data. Currently, the project only uses data from parts of Google Takeout. I would like to extend it to provide more insights from Google Takeout, as well as insights on data from other digital services. Memex does not send your data to off-device locations. Everything is processed and handled on your device.",
"target": [
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "snap",
"arch": [
"x64"
]
},
{
"target": "pacman",
"arch": [
"x64"
]
}
]
},
"win": {
"icon": "build/memex.png"
},
"publish": [
{
"provider": "github",
"owner": "dylan-mitchell",
"repo": "memex"
}
]
}
}