surfer/package.json
2021-10-02 11:43:02 +10:00

71 lines
1.9 KiB
JSON

{
"name": "melon-build",
"version": "1.0.0-a.4",
"description": "🍉 Build Firefox-based browsers with ease",
"main": "index.js",
"bin": {
"melon": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "tsc && echo \"#!/bin/node\"|cat - ./dist/index.js > /tmp/out && mv /tmp/out ./dist/index.js && chmod +x ./dist/index.js",
"format": "prettier . -w",
"lint": "eslint .",
"app": "ts-node ./src/index",
"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",
"commander": "^6.2.1",
"execa": "^5.1.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.7",
"linus": "^0.0.6",
"ora": "^5.4.1",
"promptly": "^3.2.0",
"prompts": "^2.4.1",
"rimraf": "^3.0.2",
"sharp": "^0.29.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/node": "^14.14.16",
"@types/promptly": "^3.0.2",
"@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",
"prettier": "^2.2.1",
"ts-node": "^10.2.1",
"typescript": "^4.1.3"
}
}