forked from Prometheus-SCN/js-offs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
148 lines (148 loc) · 4.53 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "js-offs",
"version": "0.1.0",
"description": "Owner Free File System",
"main": "src/index.js",
"appname": "offs",
"scripts": {
"dist": "build",
"compile-vue": "node ./build/compile-vue-templates.js",
"test": "echo \"Error: no test specified\" && exit 1",
"discard": "git reset --hard && git clean -f -d",
"start": "npm run compile-vue && ./node_modules/.bin/electron .",
"rebuild": "./node_modules/.bin/electron-rebuild",
"build": "npm run compile-vue && electron-builder --mac --win --linux",
"build-linux": "npm run compile-vue && electron-builder --linux",
"build-win": "npm run compile-vue && electron-builder --win",
"build-mac": "npm run compile-vue && electron-builder --mac",
"build-docker": "npm run build && sudo docker build -t offs .",
"publish": "build --win --linux -p always",
"docker": "sudo docker run -a STDERR -a STDOUT -p 23402:23402 -p 8200:8200 --name offsystem -v offs:/offs offs"
},
"author": "Prometheus <contact@prometheus.network>",
"license": "GPL-3.0",
"repository": "https://github.com/Prometheus-SCN/js-offs",
"build": {
"productName": "offs",
"appId": "com.prometheus.offsystem",
"publish": "github",
"directories": {
"output": "dist"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"target": "dmg",
"icon": "src/electron/images/off-logo.icns",
"artifactName": "OFF_System_${version}_mac_${arch}.dmg"
},
"win": {
"target": "nsis",
"icon": "src/electron/images/off-logo.ico"
},
"nsis": {
"license": "LICENSE.md",
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"perMachine": true,
"artifactName": "OFF_System_${version}_win_${arch}.exe",
"shortcutName": "OFF System"
},
"linux": {
"target": [
{
"target": "appimage",
"arch": [
"x64",
"ia32",
"armv7l",
"arm64"
]
}
],
"extraFiles": [
{
"from": "LICENSE.md",
"to": "license.txt"
}
],
"vendor": "Prometheus",
"synopsis": "The Owner Free File System (OFF System)(OFFS) is the world's first 'brightnet'. It facilitates legal data sharing activity over its network through the use of its ingenious data storage mechanisms. This allows it to perform its operations in the open without divulging the privacy, intent, or security of its network participants. The storage mechanism is unique in that it never stores whole files but instead stores completely random data blocks.",
"description": "The Owner Free File System",
"executableName": "offs",
"category": "Network"
},
"appImage": {
"artifactName": "OFF_System_${version}_linux_${arch}.AppImage"
},
"deb": {
"artifactName": "OFF_System_${version}_linux_${arch}.deb"
}
},
"dependencies": {
"arraybuffer-to-buffer": "0.0.4",
"block-stream2": "1.1.0",
"bs58": "4.0.1",
"buffer-split": "1.0.0",
"buffer-xor": "2.0.2",
"cbor-js": "0.1.0",
"collect-stream": "1.2.1",
"commander": "2.19.0",
"cuckoo-filter": "1.1.3",
"electron-context-menu": "0.10.1",
"electron-ipc-responder": "1.0.4",
"electron-updater": "4.0.6",
"end-of-stream": "1.4.1",
"express": "4.16.4",
"external-ip": "2.0.3",
"get-folder-size": "1.0.1",
"hamming-distance": "1.0.0",
"increment-buffer": "1.0.0",
"isstream": "0.1.2",
"js-logging": "0.1.0",
"mime": "2.3.1",
"mkdirp": "0.5.1",
"nat-upnp": "1.1.1",
"network": "0.4.1",
"node-forge": "0.7.6",
"pretty-bytes": "^5.1.0",
"protobufjs": "5.0.1",
"protocol-buffers": "3.1.6",
"streamifier": "0.1.1",
"streamspeed": "^1.1.1",
"through2": "2.0.3",
"to-array-buffer": "2.1.0",
"urldecode": "1.0.1",
"urlencode": "1.1.0",
"vee-validate": "2.0.9",
"vue": "2.5.17",
"vue-router": "3.0.1",
"vue-template-compiler": "2.5.17",
"ws": "6.1.0"
},
"devDependencies": {
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"browserify": "14.5.0",
"electron": "3.0.10",
"electron-builder": "20.38.4",
"electron-prebuilt": "1.4.13",
"electron-rebuild": "1.8.2",
"random-ipv4": "1.0.2",
"vue-devtools": "4.1.4",
"vueify": "9.4.1"
}
}