-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "@loopmode/xpty",
"version": "0.0.3",
"description": "Provides xterm.js and node-pty helpers for react electron apps",
"author": "Jovica Aleksic <[email protected]>",
"license": "MIT",
"repository": "github:loopmode/xpty",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm .tsbuildinfo && rm -rf ./lib/*",
"rebuild": "yarn clean && yarn build",
"lint": "eslint src --ext .ts,.tsx"
},
"dependencies": {
"classnames": "^2.2.6",
"node-pty": "0.9.0-beta25",
"react": "^16.8.6",
"shortid": "^2.2.15",
"tree-kill": "^1.2.1",
"xterm": "^4.0.2",
"xterm-addon-fit": "^0.2.1"
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/node": "^12.12.11",
"@types/react": "^16.9.2",
"@types/shortid": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"typescript": "^3.7.2"
},
"keywords": [
"xterm",
"node-pty",
"react",
"electron",
"pty",
"cli",
"command",
"shell",
"terminal"
]
}