-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.1 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
{
"name": "putio-sync-desktop",
"description": "Sync a folder between put.io and your computer",
"homepage": "https://put.io",
"repository": "github:putdotio/putio-sync-desktop",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Cenk Alti",
"email": "[email protected]"
},
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder",
"lint": "eslint --ext .ts .",
"downloadBinary": "ts-node downloadBinary"
},
"electronWebpack": {
"renderer": {
"sourceDirectory": null
}
},
"build": {
"appId": "io.put.sync.desktop",
"productName": "Putio Sync",
"copyright": "Copyright © 2020 Putio Internet Hizmetleri AS",
"mac": {
"category": "public.app-category.productivity",
"hardenedRuntime": true,
"extendInfo": {
"LSUIElement": 1
}
},
"afterSign": "electron-builder-notarize",
"publish": {
"provider": "github",
"releaseType": "release"
}
},
"dependencies": {
"@putdotio/api-client": "^8.9.0",
"@sentry/electron": "^2.0.0",
"electron-log": "^4.2.4",
"electron-settings": "^4.0.2",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^4.3.4",
"get-port": "^5.1.1",
"source-map-support": "^0.5.19",
"tus-js-client": "^2.2.0"
},
"devDependencies": {
"@types/event-emitter": "^0.3.3",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"axios": "^0.21.2",
"electron": "^10.2.0",
"electron-builder": "^22.4.1",
"electron-builder-notarize": "^1.2.0",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"tar-stream": "^2.1.3",
"ts-node": "^9.0.0",
"typescript": "3.9.7",
"unzipper": "^0.10.11",
"webpack": "~4.42.1"
}
}