2023-10-04 18:22:22 -07:00
|
|
|
{
|
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",
|
2023-10-04 18:22:22 -07:00
|
|
|
"description": "IDE style command line auto complete",
|
|
|
|
|
"type": "module",
|
2024-01-17 15:43:39 -08:00
|
|
|
"engines": {
|
2024-03-06 13:10:51 -05:00
|
|
|
"node": ">=16.6.0 <21.0.0"
|
2024-01-17 15:43:39 -08:00
|
|
|
},
|
2023-10-07 20:28:52 -07:00
|
|
|
"bin": {
|
2023-10-08 09:46:59 -07:00
|
|
|
"inshellisense": "./build/index.js",
|
|
|
|
|
"is": "./build/index.js"
|
2023-10-07 20:28:52 -07:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"build/**",
|
2023-10-08 00:37:44 -07:00
|
|
|
"shell/**",
|
2023-10-07 20:28:52 -07:00
|
|
|
"*.md",
|
|
|
|
|
"LICENSE"
|
|
|
|
|
],
|
2023-10-04 18:22:22 -07:00
|
|
|
"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",
|
2024-03-06 13:10:51 -05:00
|
|
|
"test:e2e": "tui-test",
|
2023-10-08 01:33:07 -07:00
|
|
|
"lint": "eslint src/ --ext .ts,.tsx && prettier src/ --check",
|
2023-12-13 13:01:31 -08:00
|
|
|
"lint:fix": "eslint src/ --ext .ts,.tsx --fix && prettier src/ --write",
|
2024-03-05 09:04:43 +08:00
|
|
|
"debug": "node --inspect --loader ts-node/esm src/index.ts -V",
|
|
|
|
|
"pre-commit": "lint-staged"
|
2023-10-04 18:22:22 -07:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2023-10-08 09:46:59 -07:00
|
|
|
"url": "git+https://github.com/microsoft/inshellisense.git"
|
2023-10-04 18:22:22 -07:00
|
|
|
},
|
|
|
|
|
"author": {
|
|
|
|
|
"name": "Microsoft Corporation"
|
|
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"bugs": {
|
2023-10-08 09:46:59 -07:00
|
|
|
"url": "https://github.com/microsoft/inshellisense/issues"
|
2023-10-04 18:22:22 -07:00
|
|
|
},
|
2023-10-08 09:46:59 -07:00
|
|
|
"homepage": "https://github.com/microsoft/inshellisense#readme",
|
2023-10-04 18:22:22 -07:00
|
|
|
"dependencies": {
|
2024-03-06 13:10:51 -05:00
|
|
|
"@homebridge/node-pty-prebuilt-multiarch": "^0.11.12",
|
2024-02-15 02:24:30 +08:00
|
|
|
"@withfig/autocomplete": "2.651.0",
|
2023-11-24 15:02:05 -08:00
|
|
|
"ajv": "^8.12.0",
|
2023-12-05 12:24:48 -08:00
|
|
|
"ansi-escapes": "^6.2.0",
|
2023-12-04 23:20:00 -08:00
|
|
|
"ansi-styles": "^6.2.1",
|
2023-10-07 11:41:33 -07:00
|
|
|
"chalk": "^5.3.0",
|
2024-03-08 18:32:25 -08:00
|
|
|
"color-convert": "^2.0.1",
|
2023-10-04 18:22:22 -07:00
|
|
|
"commander": "^11.0.0",
|
2023-11-09 09:08:23 -08:00
|
|
|
"find-process": "^1.4.7",
|
2024-03-09 13:22:29 -08:00
|
|
|
"toml": "^3.0.0",
|
2024-03-06 19:58:32 -05:00
|
|
|
"wcwidth": "^1.0.1",
|
2023-11-24 14:22:45 -08:00
|
|
|
"which": "^4.0.0",
|
2023-11-20 13:54:39 -08:00
|
|
|
"wrap-ansi": "^8.1.0",
|
2024-03-10 23:19:38 -07:00
|
|
|
"@xterm/headless": "^5.3.0"
|
2023-10-04 18:22:22 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-03-08 18:32:25 -08:00
|
|
|
"@microsoft/tui-test": "^0.0.1-rc.3",
|
2023-10-04 18:22:22 -07:00
|
|
|
"@tsconfig/node18": "^18.2.2",
|
2024-03-08 18:32:25 -08:00
|
|
|
"@types/color-convert": "^2.0.3",
|
2023-10-06 09:59:41 -07:00
|
|
|
"@types/jest": "^29.5.5",
|
2023-10-04 18:22:22 -07:00
|
|
|
"@types/react": "^18.2.24",
|
2024-03-06 19:58:32 -05:00
|
|
|
"@types/wcwidth": "^1.0.2",
|
2023-11-24 14:22:45 -08:00
|
|
|
"@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",
|
2023-10-04 18:22:22 -07:00
|
|
|
"@withfig/autocomplete-types": "^1.28.0",
|
2023-10-08 01:33:07 -07:00
|
|
|
"eslint": "^8.51.0",
|
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-10-08 01:45:20 -07:00
|
|
|
"eslint-plugin-header": "^3.1.1",
|
2023-10-08 01:33:07 -07:00
|
|
|
"eslint-plugin-react": "^7.33.2",
|
2024-03-05 09:04:43 +08:00
|
|
|
"husky": "^9.0.11",
|
2023-10-06 09:59:41 -07:00
|
|
|
"jest": "^29.7.0",
|
2024-03-05 09:04:43 +08:00
|
|
|
"lint-staged": "^15.2.2",
|
2023-10-08 01:33:07 -07:00
|
|
|
"prettier": "3.0.3",
|
2023-10-06 09:59:41 -07:00
|
|
|
"ts-jest": "^29.1.1",
|
2023-12-13 13:01:31 -08:00
|
|
|
"ts-node": "^10.9.2",
|
2023-10-04 18:22:22 -07:00
|
|
|
"typescript": "^5.2.2"
|
2024-03-05 09:04:43 +08:00
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"{,src/**/}*.{ts,tsx}": [
|
|
|
|
|
"eslint --fix",
|
|
|
|
|
"prettier --write"
|
|
|
|
|
]
|
2023-10-04 18:22:22 -07:00
|
|
|
}
|
2023-10-31 13:19:12 -07:00
|
|
|
}
|