UNPKG

@sharksv/hyper

Version:

A CLI to bootstrap new projects!

94 lines (93 loc) 2.02 kB
{ "name": "@sharksv/hyper", "version": "3.0.1", "description": "A CLI to bootstrap new projects!", "keywords": [ "Cli", "Hyper", "Project-Generator", "Template-Generator" ], "bin": { "hyper": "Bin/Hyper" }, "main": "Cli/index.js", "type": "commonjs", "files": [ "Bin/", "Cli/**/*", "Templates/**/*", "LICENSE", "README.md" ], "publishConfig": { "access": "public" }, "author": "Shorky <SharkSV@outlook.com>", "repository": "github:iTzSharkSV/Hyper", "license": "MIT", "scripts": { "prepare": "husky install", "build": "tsc", "build:dev": "tsc --watch", "lint": "eslint --ext .js,.ts .", "format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"", "precommit": "npm run lint && npm run format", "test": "npm run build && node Tests/Init.Test.mjs" }, "prettier": { "trailingComma": "none", "arrowParens": "always", "singleQuote": true, "printWidth": 80, "useTabs": true, "tabWidth": 4, "semi": true }, "eslintConfig": { "root": true, "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module" }, "extends": [ "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended" ], "env": { "es6": true, "node": true }, "ignorePatterns": [ "Cli", "node_modules" ] }, "dependencies": { "chalk": "4.1.2", "execa": "5.1.1", "fs-extra": "^10.0.0", "inquirer": "^8.2.0", "listr": "^0.14.3", "meow": "9.0.0", "update-notifier": "^5.1.0" }, "devDependencies": { "@types/chalk": "^2.2.0", "@types/fs-extra": "^9.0.13", "@types/inquirer": "^8.2.0", "@types/listr": "^0.14.4", "@types/meow": "^6.0.0", "@types/node": "^17.0.2", "@types/update-notifier": "^5.1.0", "@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/parser": "^5.8.0", "eslint": "^8.5.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "husky": "^7.0.0", "prettier": "^2.5.1", "typescript": "^4.5.4" } }