forked from basti-app/basti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.48 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
{
"name": "basti",
"version": "1.0.1",
"description": "Basti is a CLI tool for accessing DB instances and other AWS resources in private networks almost at no cost.",
"author": "BohdanPetryshyn",
"homepage": "https://github.com/BohdanPetryshyn/basti#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/BohdanPetryshyn/basti.git"
},
"bugs": {
"url": "https://github.com/BohdanPetryshyn/basti/issues"
},
"license": "ISC",
"type": "module",
"bin": {
"basti": "bin/run.js"
},
"scripts": {
"start": "npm run build && node bin/run.js",
"build": "npm run build-src && npm run build-deps",
"build-src": "tsc",
"build-src-watch": "tsc --watch",
"build-deps": "ts-node-esm scripts/build-deps.ts",
"check": "npm run check-types && npm run check-style && npm run check-deps",
"check-types": "tsc --noEmit",
"check-style": "eslint src",
"check-deps": "ts-node-esm scripts/check-deps.ts",
"publish-deps": "ts-node-esm scripts/publish-deps.ts",
"prepare-deps": "npm run check-deps || (npm run build-deps && npm run publish-deps)",
"prepublishOnly": "npm run prepare-deps && npm run check && npm run build-src"
},
"devDependencies": {
"@types/inquirer": "8.2.1",
"@types/yargs": "17.0.10",
"@typescript-eslint/eslint-plugin": "5.37.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "23.0.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-unicorn": "43.0.2",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"typescript": "4.8.3"
},
"dependencies": {
"@aws-sdk/client-ec2": "3.231.0",
"@aws-sdk/client-iam": "3.231.0",
"@aws-sdk/client-rds": "3.231.0",
"@aws-sdk/client-ssm": "3.231.0",
"chalk": "5.0.1",
"inquirer": "9.0.0",
"ora": "6.1.2",
"yargs": "17.5.1",
"zod": "3.17.3"
},
"optionalDependencies": {
"basti-session-manager-binary-darwin-arm64": "1.2.295.0",
"basti-session-manager-binary-darwin-x64": "1.2.295.0",
"basti-session-manager-binary-linux-arm64": "1.2.295.0",
"basti-session-manager-binary-linux-ia32": "1.2.295.0",
"basti-session-manager-binary-linux-x64": "1.2.295.0"
},
"imports": {
"#src/*.js": "./src/*.js"
},
"files": [
"bin/run.js",
"dist",
"package.json",
"README.md"
]
}