-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 758 Bytes
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
{
"name": "ashdrive",
"version": "1.0.0",
"description": "Automatically back up your flash drives on Mac and Windows",
"author": "AshDrive",
"license": "MIT",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"icon": "node scripts/make-icon.mjs",
"test": "node scripts/test.cjs",
"test:ui": "playwright test",
"smoke": "electron . --smoke",
"dist:win": "electron-builder --win --publish never",
"dist:mac": "electron-builder --mac --publish never",
"dist:all": "electron-builder -mwl --publish never"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"sharp": "^0.35.3"
},
"dependencies": {
"plist": "^5.0.0"
}
}