mirror of
https://github.com/zen-browser/surfer.git
synced 2025-07-07 17:05:33 +02:00
75 lines
2 KiB
JSON
75 lines
2 KiB
JSON
{
|
|
"name": "melon-build",
|
|
"version": "1.0.0-a.11",
|
|
"description": "🍉 Build Firefox-based browsers with ease",
|
|
"main": "index.js",
|
|
"reveal": true,
|
|
"bin": {
|
|
"melon": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:dev": "jest --watch",
|
|
"build": "rm -rf dist/ && tsc && echo \"#!/usr/bin/env node\"|cat - ./dist/index.js > /tmp/out && mv /tmp/out ./dist/index.js && chmod +x ./dist/index.js",
|
|
"format": "prettier . -w",
|
|
"lint": "eslint .",
|
|
"docs:install": "",
|
|
"docs:build": "zola --root docs/ build",
|
|
"docs:dev": "zola --root docs/ serve"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dothq/melon.git"
|
|
},
|
|
"keywords": [
|
|
"firefox",
|
|
"firefox-fork",
|
|
"build-tool"
|
|
],
|
|
"authors": [
|
|
"TrickyPR",
|
|
"EnderDev"
|
|
],
|
|
"license": "MPL-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/dothq/melon/issues"
|
|
},
|
|
"homepage": "https://github.com/dothq/melon#readme",
|
|
"dependencies": {
|
|
"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",
|
|
"glob": "^7.1.7",
|
|
"linus": "^0.0.6",
|
|
"listr": "^0.14.3",
|
|
"prompts": "^2.4.1",
|
|
"rimraf": "^3.0.2",
|
|
"sharp": "^0.29.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cli-progress": "^3.9.2",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/jest": "^27.0.3",
|
|
"@types/listr": "^0.14.4",
|
|
"@types/node": "^14.14.16",
|
|
"@types/prompts": "^2.0.14",
|
|
"@types/rimraf": "^3.0.0",
|
|
"@types/sharp": "^0.29.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.32.0",
|
|
"@typescript-eslint/parser": "^4.32.0",
|
|
"eslint": "^7.2.0",
|
|
"eslint-config-airbnb": "18.2.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
"eslint-plugin-react": "^7.21.5",
|
|
"eslint-plugin-react-hooks": "^1.7.0",
|
|
"jest": "^27.4.5",
|
|
"prettier": "^2.2.1",
|
|
"ts-jest": "^27.1.2",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|