vibe-codex
Version:
CLI tool to install development rules and git hooks with interactive configuration
109 lines (108 loc) • 2.47 kB
JSON
{
"name": "vibe-codex",
"version": "0.6.2",
"description": "CLI tool to install development rules and git hooks with interactive configuration",
"keywords": [
"vibe-codex",
"git-hooks",
"development-workflow",
"code-quality",
"linting",
"testing",
"ci-cd",
"automation",
"cli",
"npx"
],
"homepage": "https://github.com/tyabonil/vibe-codex",
"bugs": {
"url": "https://github.com/tyabonil/vibe-codex/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tyabonil/vibe-codex.git"
},
"license": "MIT",
"author": "Ty Yabonil",
"main": "lib/index.js",
"bin": {
"vibe-codex": "bin/vibe-codex.js"
},
"files": [
"bin/",
"lib/",
"templates/",
"hooks/",
"config/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --ci --watchAll=false",
"lint": "eslint lib/ tests/",
"lint:fix": "eslint lib/ tests/ --fix",
"format": "prettier --write \"lib/**/*.js\" \"tests/**/*.js\"",
"prepublishOnly": "echo 'Skipping tests for now'",
"version": "npm run format && git add -A",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"conf": "^12.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"joi": "^17.11.0",
"js-yaml": "^4.1.0",
"marked": "^16.0.0",
"node-fetch": "^3.3.2",
"ora": "^5.4.1",
"semver": "^7.5.4",
"simple-git": "^3.20.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.10.5",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"eslintConfig": {
"env": {
"node": true,
"jest": true,
"es2021": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"no-unused-vars": "error",
"no-console": "off",
"prefer-const": "error",
"no-var": "error"
}
},
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib",
"test": "tests"
},
"type": "commonjs"
}