1
mirror of https://github.com/jakejarvis/jakejarvis.git synced 2025-12-01 08:53:51 -05:00

move CLI code into this repo

This commit is contained in:
2021-01-30 09:52:18 -05:00
parent a03f53154b
commit e59e5f23bb
10 changed files with 2356 additions and 0 deletions

72
cli/package.json Normal file
View File

@@ -0,0 +1,72 @@
{
"name": "@jakejarvis/cli",
"version": "1.7.337",
"description": "The Jake Jarvis CLI",
"homepage": "https://jarv.is/cli/",
"bugs": "https://github.com/jakejarvis/jakejarvis/issues",
"license": "MIT",
"keywords": [
"cli",
"jakejarvis",
"jarvis",
"portfolio",
"useless"
],
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://jarv.is/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakejarvis/jakejarvis.git"
},
"engines": {
"node": "^10 || ^12 || >=14"
},
"files": [
"src/*"
],
"bin": {
"jakejarvis": "./src/cli.js"
},
"scripts": {
"test": "eslint ./src/*.js",
"cli": "node ./src/cli.js"
},
"dependencies": {
"import-jsx": "^4.0.0",
"ink": "^3.0.8",
"ink-big-text": "^1.1.0",
"ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.0",
"meow": "^9.0.0",
"open": "^7.3.1",
"react": "^16.x"
},
"devDependencies": {
"eslint": "^7.18.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0"
},
"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"
}
}
}
}