{ "name": "@microsoft/inshellisense", "version": "0.0.1-rc.10", "description": "IDE style command line auto complete", "type": "module", "engines": { "node": ">=16.6.0 <21.0.0" }, "bin": { "inshellisense": "./build/index.js", "is": "./build/index.js" }, "files": [ "build/**", "shell/**", "*.md", "LICENSE" ], "scripts": { "build": "tsc", "dev": "node --loader ts-node/esm src/index.ts -V", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:e2e": "tui-test", "lint": "eslint src/ --ext .ts,.tsx && prettier src/ --check", "lint:fix": "eslint src/ --ext .ts,.tsx --fix && prettier src/ --write", "debug": "node --inspect --loader ts-node/esm src/index.ts -V", "pre-commit": "lint-staged" }, "repository": { "type": "git", "url": "git+https://github.com/microsoft/inshellisense.git" }, "author": { "name": "Microsoft Corporation" }, "license": "MIT", "bugs": { "url": "https://github.com/microsoft/inshellisense/issues" }, "homepage": "https://github.com/microsoft/inshellisense#readme", "dependencies": { "@homebridge/node-pty-prebuilt-multiarch": "^0.11.12", "@withfig/autocomplete": "2.651.0", "ajv": "^8.12.0", "ansi-escapes": "^6.2.0", "ansi-styles": "^6.2.1", "chalk": "^5.3.0", "color-convert": "^2.0.1", "commander": "^11.0.0", "find-process": "^1.4.7", "toml": "^3.0.0", "wcwidth": "^1.0.1", "which": "^4.0.0", "wrap-ansi": "^8.1.0", "@xterm/headless": "^5.3.0" }, "devDependencies": { "@microsoft/tui-test": "^0.0.1-rc.3", "@tsconfig/node18": "^18.2.2", "@types/color-convert": "^2.0.3", "@types/jest": "^29.5.5", "@types/react": "^18.2.24", "@types/wcwidth": "^1.0.2", "@types/which": "^3.0.3", "@typescript-eslint/eslint-plugin": "^6.7.4", "@typescript-eslint/parser": "^6.7.4", "@withfig/autocomplete-types": "^1.28.0", "eslint": "^8.51.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-header": "^3.1.1", "eslint-plugin-react": "^7.33.2", "husky": "^9.0.11", "jest": "^29.7.0", "lint-staged": "^15.2.2", "prettier": "3.0.3", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.2.2" }, "lint-staged": { "{,src/**/}*.{ts,tsx}": [ "eslint --fix", "prettier --write" ] } }