UNPKG

intent-cli

Version:

A fully functional CLI built with TypeScript and modern tools

92 lines (91 loc) 2.23 kB
{ "name": "intent-cli", "version": "8.0.0", "description": "A fully functional CLI built with TypeScript and modern tools", "main": "dist/index.js", "bin": { "intent-cli": "./bin/intent-cli" }, "types": "dist/index.d.ts", "files": [ "dist", "bin/intent-cli" ], "scripts": { "build": "tsc", "dev": "tsx src/index.ts", "start": "node dist/index.js", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "prepare": "husky install", "prepublishOnly": "npm run build" }, "keywords": [ "cli", "typescript", "commander", "intent", "intentjs", "ai-cli" ], "author": "Your Name", "license": "MIT", "dependencies": { "@intentjs/cli": "^0.0.22", "@intentjs/core": "^0.1.62", "axios": "^1.6.0", "boxen": "^5.1.2", "chalk": "^4.1.2", "cli-table3": "^0.6.3", "commander": "^11.1.0", "compromise": "^14.14.4", "conf": "^10.2.0", "figures": "^3.2.0", "inquirer": "^9.2.0", "lodash": "^4.17.21", "natural": "^8.1.0", "ora": "^5.4.1", "update-notifier": "^7.0.0", "yaml": "^2.3.4" }, "devDependencies": { "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.5", "@types/lodash": "^4.14.200", "@types/natural": "^5.1.5", "@types/node": "^20.8.0", "@types/update-notifier": "^6.0.8", "@typescript-eslint/eslint-plugin": "^6.7.4", "@typescript-eslint/parser": "^6.7.4", "eslint": "^8.50.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "husky": "^8.0.3", "jest": "^29.7.0", "lint-staged": "^14.0.1", "prettier": "^3.0.3", "ts-jest": "^29.1.1", "tsx": "^4.1.1", "typescript": "^5.2.2" }, "lint-staged": { "*.{ts,js}": [ "eslint --fix", "prettier --write" ] }, "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "https://github.com/Unmesh100/UG-intent-cli.git" }, "bugs": { "url": "https://github.com/Unmesh100/intent-cli/issues" }, "homepage": "https://github.com/Unmesh100/UG-intent-cli#readme" }