-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "browser",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/JaduaStudios/JaduaGoBrowser.git",
"author": "jaduastudios <[email protected]>",
"license": "MPL-2.0",
"private": true,
"dependencies": {
"gluon-build": "1.0.0-rc.5"
},
"scripts": {
"build": "gluon build",
"build:ui": "gluon build --ui",
"bs": "pnpm build && pnpm start",
"bus": "pnpm build:ui && pnpm start",
"start": "pnpm clearStartupCache && gluon run",
"start:win": "gluon run",
"export": "gluon export-file",
"imp": "gluon import",
"clearProfile": "rm -rf engine/obj-x86_64-pc-linux-gnu/tmp/profile-default",
"clearStartupCache": "rm -rf engine/obj-x86_64-pc-linux-gnu/tmp/profile-default/startupCache",
"download": "gluon download",
"package": "gluon package",
"ff-version": "gluon ff-version",
"licenseCheck": "gluon license-check",
"gluon": "gluon",
"reset": "gluon reset"
},
"devDependencies": {
"gecko-types": "github:quark-platform/gecko-types"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}