forked from Siderus/Orion
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3 KB
/
package.json
File metadata and controls
122 lines (122 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
114
115
116
117
118
119
120
121
122
{
"name": "Orion",
"version": "0.9.1-master",
"env": "development",
"ipfsVersion": "v0.4.17",
"ipfsRepoMigrationsVersion": "v1.4.0",
"statsToken": "9d407c14d888a212cf04c397a95acb7b",
"description": "Siderus Orion is an easy-to-use IPFS desktop client",
"main": "app/entry.js",
"scripts": {
"test": "jest",
"lint": "eslint app/ --ext .jsx --ext .js",
"start": "electron ."
},
"releasePage": "https://orion.siderus.io",
"repository": "https://github.com/siderus/Orion",
"keywords": [
"electron",
"ipfs",
"file",
"p2p",
"sharing",
"siderus"
],
"author": {
"name": "Siderus OU",
"email": "hello@siderus.io"
},
"license": "GPL-3.0",
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-inline-react-svg": "^0.5.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"electron-builder": "^20.8.1",
"electron-prebuilt-compile": "^2.0.2",
"electron-react-devtools": "^0.5.3",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"icon-gen": "^1.0.7",
"jest": "^22.4.2"
},
"dependencies": {
"@sentry/electron": "^0.5.2",
"app-root-dir": "^1.0.2",
"byte-size": "^3.0.0",
"classnames": "^2.2.5",
"electron-compile": "^6.4.2",
"electron-settings": "^3.0.0",
"electron-updater": "^3.0.3",
"ipfs-api": "^20.2.1",
"is-electron-renderer": "^2.0.1",
"is-ipfs": "^0.3.0",
"mixpanel": "^0.9.1",
"mobx": "^3.0.2",
"mobx-react": "^4.1.0",
"moment": "^2.22.2",
"multiaddr": "^3.0.2",
"photon": "git+https://github.com/connors/photon.git",
"query-string": "^5.1.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-photonkit": "git+https://github.com/react-photonkit/react-photonkit.git",
"react-spin": "^0.6.2",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"spin.js": "^2.3.2",
"styled-components": "^3.1.6",
"tmp": "^0.0.33",
"underscore": "^1.8.3",
"uuid": "^3.2.1",
"winreg": "^1.2.4"
},
"jest": {
"testURL": "http://localhost/"
},
"build": {
"electronVersion": "2.0.8",
"publish": [
{
"provider": "generic",
"url": "https://get.siderus.io/orion"
}
],
"appId": "io.siderus.orion",
"files": [
"app/**/*",
"docs/**",
".cache/**/*",
"go-ipfs/**",
"fs-repo-migrations/**"
],
"asar": false,
"directories": {
"output": "build"
},
"linux": {
"target": [
"deb",
"rpm",
"snap"
]
},
"mac": {
"icon": "build/logo.icns",
"target": [
"zip"
]
},
"win": {
"icon": "build/logo.ico"
}
}
}