-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
{
"name": "xterm-pty",
"description": "A pty for xterm.js and Emscripten",
"version": "0.10.2",
"main": "out/index.js",
"module": "out/index.mjs",
"types": "out/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mame/xterm-pty.git"
},
"license": "MIT",
"scripts": {
"build": "tsup",
"check": "tsc"
},
"files": [
"emscripten-pty.js",
"out/index.js",
"out/index.js.map",
"out/index.mjs",
"out/index.mjs.map",
"out/index.d.ts",
"out/index.d.mts"
],
"dependencies": {
"@xterm/xterm": "^5.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"source-map-loader": "^5.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.2.6",
"tsup": "^8.2.3",
"typescript": "^5.7.2"
},
"bugs": {
"url": "https://github.com/mame/xterm-pty/issues"
},
"homepage": "https://github.com/mame/xterm-pty#readme",
"keywords": [
"xterm.js",
"pty",
"termios",
"cooked mode",
"emscripten"
],
"author": "Yusuke Endoh <mame@ruby-lang.org> (https://github.com/mame)"
}