mirror of
https://github.com/jakejarvis/jakejarvis.git
synced 2025-04-26 13:28:28 -04:00
88 lines
1.9 KiB
JSON
88 lines
1.9 KiB
JSON
{
|
|
"name": "@jakejarvis/cli",
|
|
"version": "1.11.337",
|
|
"description": "The Jake Jarvis CLI",
|
|
"license": "MIT",
|
|
"homepage": "https://jarv.is/cli/",
|
|
"author": {
|
|
"name": "Jake Jarvis",
|
|
"email": "jake@jarv.is",
|
|
"url": "https://jarv.is/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jakejarvis/jakejarvis.git",
|
|
"directory": "cli"
|
|
},
|
|
"keywords": [
|
|
"cli",
|
|
"jakejarvis",
|
|
"jarvis",
|
|
"portfolio",
|
|
"useless"
|
|
],
|
|
"engines": {
|
|
"node": "^12 || ^14 || >=16"
|
|
},
|
|
"files": [
|
|
"dist/index.js"
|
|
],
|
|
"bin": {
|
|
"jakejarvis": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"babel": "babel index.js -o dist/unbundled.js",
|
|
"ncc": "ncc build dist/unbundled.js -m -o dist",
|
|
"build": "run-s clean babel ncc",
|
|
"run": "yarn build && node dist/index.js",
|
|
"lint": "eslint index.js",
|
|
"prepublishOnly": "run-s lint build"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.14.8",
|
|
"@babel/core": "^7.15.0",
|
|
"@babel/preset-env": "^7.15.0",
|
|
"@babel/preset-react": "^7.14.5",
|
|
"@vercel/ncc": "^0.29.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-react": "^7.24.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"ink": "^3.0.9",
|
|
"ink-big-text": "^1.2.0",
|
|
"ink-gradient": "^2.0.0",
|
|
"ink-select-input": "^4.2.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"open": "^8.2.1",
|
|
"react": "^16.x",
|
|
"rimraf": "^3.0.2"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@babel/preset-env",
|
|
"@babel/preset-react"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
}
|
|
}
|