UNPKG

optimizeit

Version:

OptimizeIt is a command-line tool that automatically optimizes source code for performance and readability, supporting multiple programming languages and configurable settings.

74 lines (73 loc) 2.01 kB
{ "name": "optimizeit", "version": "1.0.4", "description": "OptimizeIt is a command-line tool that automatically optimizes source code for performance and readability, supporting multiple programming languages and configurable settings.", "main": "index.js", "scripts": { "build": "tsc", "lint": "npx oxlint --fix && eslint .", "lint:fix": "eslint --fix .", "prettier": "prettier --write .", "dev": "nodemon", "start": "ts-node src/main.ts", "prepare": "husky install", "test": "jest", "test:unit": "jest tests/unit", "test:watch": "jest --watch", "test:file": "jest --findRelatedTests", "test:coverage": "jest --coverage" }, "repository": { "type": "git", "url": "git+https://github.com/Mounayer/OptimizeIt.git" }, "bugs": { "url": "https://github.com/Mounayer/OptimizeIt/issues" }, "homepage": "https://github.com/Mounayer/OptimizeIt#readme", "lint-staged": { "*.{js,ts,json}": [ "prettier --write", "eslint --fix", "npx oxlint --fix" ] }, "bin": { "optimizeit": "./dist/main.js" }, "keywords": [ "code-optimization", "cli", "development-tools", "performance" ], "author": "Majd Al Mnayer", "license": "ISC", "devDependencies": { "@eslint/js": "^9.9.1", "@types/jest": "^29.5.14", "@typescript-eslint/eslint-plugin": "^8.4.0", "@typescript-eslint/parser": "^8.4.0", "eslint": "^9.9.1", "eslint-config-prettier": "^9.1.0", "eslint-plugin-jest": "^28.8.3", "eslint-plugin-oxlint": "^0.10.1", "eslint-plugin-prettier": "^5.2.1", "globals": "^15.9.0", "husky": "^8.0.0", "jest": "^29.7.0", "lint-staged": "^15.2.10", "nodemon": "^3.1.4", "prettier": "^3.3.3", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "^5.5.4", "typescript-eslint": "^8.4.0" }, "dependencies": { "dotenv": "^16.4.5", "groq-sdk": "^0.6.1", "marked": "^14.1.0", "smol-toml": "^1.3.0" } }