-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.86 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
{
"name": "airit",
"version": "1.0.0",
"description": "Share files between MAC, Windows and Linux",
"main": "src/main.ts",
"scripts": {
"dev": "electron-compile --appDir ./airit ./src && electron-forge start",
"pack": "electron-forge package",
"publish": "electron-forge make",
"lint": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ki-Ke/airit.git"
},
"keywords": [
"airit",
"share",
"files"
],
"author": "Kiran Niranjan <kiran@kike.co.in>",
"contributors": [
{
"name": "Keerthi Niranjan",
"email": "keerthiniranjan16@gmail.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Ki-Ke/airit/issues"
},
"homepage": "https://github.com/Ki-Ke/airit#readme",
"dependencies": {
"electron-compile": "^6.4.1",
"multicast-dns": "^6.1.1",
"network-address": "^1.1.2"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.0",
"electron-compilers": "^5.9.0",
"electron-forge": "^5.1.1",
"electron-prebuilt-compile": "1.8.2",
"eslint": "^4.18.2",
"tslint": "^5.9.1",
"typescript": "^2.3.3"
},
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"dmg"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {},
"electronWinstallerConfig": {
"name": ""
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": ""
}
}
}
}