-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
73 lines (73 loc) · 1.81 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
{
"name": "trzsz",
"version": "1.1.5",
"description": "Making webshell and terminal supports trzsz ( trz / tsz ), which similar to ( rz / sz ), and compatible with tmux.",
"main": "lib/trzsz.js",
"types": "lib/trzsz.d.ts",
"module": "lib/trzsz.mjs",
"files": [
"lib",
"bin"
],
"bin": {
"trz": "./bin/trz.js",
"tsz": "./bin/tsz.js"
},
"scripts": {
"test": "jest",
"build": "rimraf dist lib && tsc && rollup -c",
"watch": "rollup -c -w",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trzsz/trzsz.js.git"
},
"keywords": [
"terminal",
"webshell",
"xterm",
"rz",
"sz",
"lrzsz",
"tmux",
"trz",
"tsz",
"trzsz"
],
"author": "Lonny Wong",
"license": "MIT",
"bugs": {
"url": "https://github.com/trzsz/trzsz.js/issues"
},
"homepage": "https://trzsz.github.io/js",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"argparse": "^2.0.1",
"base64-js": "^1.5.1",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pako": "^2.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-version-injector": "^1.3.3",
"ts-jest": "^29.1.1",
"ts-md5": "^1.3.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"web-file-polyfill": "^1.0.4",
"xterm": "^5.3.0"
}
}