-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
75 lines (75 loc) · 1.76 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
{
"name": "cisco-vpn-rdp-connecter",
"version": "3.2.2",
"description": "Connect to Cisco AnyConnect VPN and open a Microsoft Remote Desktop (RDP) window",
"type": "module",
"bin": {
"cisco-vpn-rdp-connecter": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublish": "npm run build",
"test": "tsd",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/knutkirkhorn/cisco-vpn-rdp-connecter.git"
},
"keywords": [
"cisco",
"anyconnect",
"vpn",
"rdp",
"cli",
"cli-app"
],
"author": "Knut Kirkhorn",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/knutkirkhorn/cisco-vpn-rdp-connecter/issues"
},
"homepage": "https://github.com/knutkirkhorn/cisco-vpn-rdp-connecter#readme",
"dependencies": {
"cisco-vpn": "^1.0.2",
"conf": "^11.0.2",
"ink": "^4.3.0",
"ink-select-input": "^5.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^5.0.1",
"is-online": "^10.0.0",
"is-unicode-supported": "^1.3.0",
"log-symbols": "^5.1.0",
"meow": "^12.0.1",
"ps-list": "^8.1.1",
"react": "^18.2.0",
"regedit": "^5.1.2",
"sqlite3": "^5.1.6",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/react": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-unicorn": "^48.0.1",
"ts-node": "^10.9.1",
"tsd": "^0.28.1",
"typescript": "^5.1.3"
}
}