Files

87 lines
2.4 KiB
JSON
Raw Permalink Normal View History

{
2023-10-08 09:46:59 -07:00
"name": "@microsoft/inshellisense",
2024-03-18 09:18:55 -07:00
"version": "0.0.1-rc.10",
"description": "IDE style command line auto complete",
"type": "module",
"engines": {
"node": ">=16.6.0 <21.0.0"
},
"bin": {
2023-10-08 09:46:59 -07:00
"inshellisense": "./build/index.js",
"is": "./build/index.js"
},
"files": [
"build/**",
2023-10-08 00:37:44 -07:00
"shell/**",
"*.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
2024-01-08 23:38:18 +08:00
"dev": "node --loader ts-node/esm src/index.ts -V",
2023-10-08 01:33:07 -07:00
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:e2e": "tui-test",
2023-10-08 01:33:07 -07:00
"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",
2023-10-08 09:46:59 -07:00
"url": "git+https://github.com/microsoft/inshellisense.git"
},
"author": {
"name": "Microsoft Corporation"
},
"license": "MIT",
"bugs": {
2023-10-08 09:46:59 -07:00
"url": "https://github.com/microsoft/inshellisense/issues"
},
2023-10-08 09:46:59 -07:00
"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",
2024-03-08 18:32:25 -08:00
"color-convert": "^2.0.1",
"commander": "^11.0.0",
2023-11-09 09:08:23 -08:00
"find-process": "^1.4.7",
"toml": "^3.0.0",
"wcwidth": "^1.0.1",
"which": "^4.0.0",
2023-11-20 13:54:39 -08:00
"wrap-ansi": "^8.1.0",
"@xterm/headless": "^5.3.0"
},
"devDependencies": {
2024-03-08 18:32:25 -08:00
"@microsoft/tui-test": "^0.0.1-rc.3",
"@tsconfig/node18": "^18.2.2",
2024-03-08 18:32:25 -08:00
"@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",
2023-10-08 01:33:07 -07:00
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@withfig/autocomplete-types": "^1.28.0",
2023-10-08 01:33:07 -07:00
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
2023-10-08 01:33:07 -07:00
"eslint-plugin-react": "^7.33.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
2023-10-08 01:33:07 -07:00
"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"
]
}
2023-10-31 13:19:12 -07:00
}