-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.26 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
80
81
82
{
"name": "gluon-build",
"version": "1.0.0-rc.5",
"description": "🍉 Build Firefox-based browsers with ease",
"main": "index.js",
"reveal": true,
"bin": {
"gluon": "./dist/index.js"
},
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"build": "tsc && chmod +x ./dist/index.js && cp src/commands/license-check.txt dist/commands/license-check.txt",
"build:win": "tsc && copy /y .\\src\\commands\\license-check.txt .\\dist\\commands\\license-check.txt",
"format": "prettier . -w",
"lint": "eslint .",
"docs:install": "",
"docs:build": "zola --root docs/ build",
"docs:dev": "zola --root docs/ serve",
"self": "cd testing && node ../dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pulse-browser/gluon.git"
},
"keywords": [
"firefox",
"firefox-fork",
"build-tool"
],
"authors": [
"TrickyPR"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/pulse-browser/gluon/issues"
},
"homepage": "https://github.com/pulse-browser/gluon#readme",
"dependencies": {
"@resvg/resvg-js": "^1.4.0",
"async-icns": "^1.0.2",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cli-progress": "^3.9.1",
"commander": "^6.2.1",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"ini": "^3.0.0",
"is-apple-silicon": "trickypr/is-apple-silicon",
"kleur": "^4.1.5",
"modern-async": "^1.1.2",
"picomatch": "^2.3.1",
"png-to-ico": "^2.1.4",
"prompts": "^2.4.1",
"rustic": "^1.2.1",
"semver": "^7.3.7",
"sharp": "^0.30.7",
"tiny-glob": "^0.2.9",
"xmlbuilder2": "^3.0.2"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/fs-extra": "^9.0.13",
"@types/ini": "^1.3.31",
"@types/jest": "^27.0.3",
"@types/listr": "^0.14.4",
"@types/node": "^14.14.16",
"@types/picomatch": "^2.3.0",
"@types/prompts": "^2.0.14",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.3.10",
"@types/sharp": "^0.29.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-plugin-unicorn": "^44.0.2",
"jest": "^27.4.5",
"prettier": "^2.2.1",
"ts-jest": "^27.1.2",
"typescript": "^4.1.3"
}
}