-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 745 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "dropbox-paper",
"version": "0.0.1",
"description": "Unofficial Dropbox Paper client. Built with Electron.",
"main": "app.js",
"scripts": {
"dev": "electron ./app",
"clean": "rm -rf ./dist",
"clean:win": "rm -rf ./dist/win",
"clean:osx": "rm -rf ./dist/osx",
"build": "npm run clean && npm run build:osx && npm run build:win",
"build:win": "npm run clean:win && electron-packager ./app \"Dropbox Paper\" --out=dist/win --platform=win32 --arch=x64",
"build:osx": "npm run clean:osx && electron-packager ./app \"Dropbox Paper\" --out=dist/osx --platform=darwin --arch=x64 --icon=assets/osx/dropbox.icns"
},
"devDependencies": {
"electron": "^1.8.2",
"electron-packager": "^11.0.1"
}
}