forked from microsoft/inshellisense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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"
]
}
}