-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
executable file
·79 lines (79 loc) · 2.22 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
{
"name": "partyshare.busterlabs.xyz",
"version": "1.3.1",
"description": "A file sharing app using IPFS (InterPlanetary File System)",
"main": "src/electron/main.js",
"scripts": {
"build_electron": "build --publish=never",
"build_ui": "webpack",
"lint": "eslint --ext .js --ext .jsx --format=node_modules/eslint-formatter-pretty src/",
"run_electron": "ENV=dev electron src/electron/main.js",
"start": "yarn watch & yarn run_electron",
"watch": "webpack --progress --colors --watch"
},
"repository": "https://github.com/busterlabs/partyshare",
"keywords": [],
"author": "Ben Stahl <[email protected]>",
"license": "CC0-1.0",
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"core-js": "^2.5.1",
"css-loader": "^0.28.7",
"electron-log": "^2.2.11",
"electron-updater": "^2.16.1",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-size": "^1.0.0",
"fs-extra": "^4.0.2",
"ipfs-api": "^17.1.2",
"ipfsd-ctl": "^0.25.1",
"klaw": "^2.1.1",
"menubar": "^5.2.3",
"mime": "^2.0.3",
"preact": "^8.2.6",
"preact-compat": "^3.17.0",
"style-loader": "^0.19.0"
},
"devDependencies": {
"@vimeo/eslint-config-player": "^5.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.23.0",
"electron": "^1.7.9",
"electron-builder": "^19.45.5",
"eslint": "^4.11.0",
"eslint-config-standard-preact": "^1.1.6",
"eslint-formatter-pretty": "^1.3.0",
"webpack": "^3.8.1"
},
"build": {
"appId": "partyshare.busterlabs.xyz",
"artifactName": "${name}-${version}-${os}.${ext}",
"asarUnpack": "node_modules/go-ipfs-dep",
"productName": "Partyshare",
"icon": "build_assets/partyshare.icns",
"forceCodeSigning": true,
"directories": {
"buildResources": "build_assets"
},
"dmg": {
"background": "build_assets/background.tiff",
"title": "Install ${productName}"
},
"mac": {
"target": [
"dmg",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"tar.gz"
]
}
}
}