-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 984 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 984 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "protondrive-linux",
"version": "1.1.2",
"description": "Proton Drive desktop client - one-line installer",
"main": "install.js",
"bin": {
"protondrive-tauri": "./install.js"
},
"files": [
"install.js"
],
"repository": {
"type": "git",
"url": "https://github.com/DonnieDice/protondrive-linux.git"
},
"keywords": [
"proton",
"drive",
"desktop",
"tauri",
"encryption"
],
"author": "DonnieDice",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"tauri": "tauri",
"dev": "tauri dev",
"build": "npm run build:web && tauri build -- --bundles deb,rpm,appimage",
"build:web": "./scripts/build-webclients.sh",
"build:deb": "npm run build:web && tauri build -- --bundles deb",
"build:rpm": "npm run build:web && tauri build -- --bundles rpm",
"build:appimage": "npm run build:web && tauri build -- --bundles appimage"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.6"
}
}