2016-04-24 23:47:26 +02:00
|
|
|
{
|
2023-07-27 15:52:01 +02:00
|
|
|
"name": "@push.rocks/smartssh",
|
2024-02-09 18:21:33 +01:00
|
|
|
"version": "2.0.2",
|
2018-09-17 22:32:31 +02:00
|
|
|
"private": false,
|
2024-04-14 18:22:42 +02:00
|
|
|
"description": "A library for setting up SSH configuration quickly and painlessly.",
|
2026-05-01 18:44:22 +00:00
|
|
|
"exports": {
|
|
|
|
|
".": "./dist_ts/index.js"
|
|
|
|
|
},
|
2022-10-11 13:05:29 +02:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
|
|
|
|
"type": "module",
|
2016-04-24 23:47:26 +02:00
|
|
|
"scripts": {
|
2026-05-01 18:44:22 +00:00
|
|
|
"test": "tstest test/",
|
2019-07-17 11:48:31 +02:00
|
|
|
"testDocker": "tsdocker",
|
2026-05-01 18:44:22 +00:00
|
|
|
"build": "tsbuild",
|
2022-10-11 13:05:29 +02:00
|
|
|
"buildDocs": "tsdoc"
|
2016-04-24 23:47:26 +02:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2024-05-29 14:16:27 +02:00
|
|
|
"url": "https://code.foss.global/push.rocks/smartssh.git"
|
2016-04-24 23:47:26 +02:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"SSH",
|
2024-04-14 18:22:42 +02:00
|
|
|
"SSH configuration",
|
|
|
|
|
"SSH keys management",
|
|
|
|
|
"automation",
|
|
|
|
|
"development tools",
|
|
|
|
|
"node.js",
|
|
|
|
|
"security",
|
|
|
|
|
"server management"
|
2016-04-24 23:47:26 +02:00
|
|
|
],
|
2026-05-01 18:44:22 +00:00
|
|
|
"author": "Task Venture Capital GmbH <hello@task.vc>",
|
2016-04-24 23:47:26 +02:00
|
|
|
"license": "MIT",
|
|
|
|
|
"bugs": {
|
2026-05-01 18:44:22 +00:00
|
|
|
"url": "https://code.foss.global/push.rocks/smartssh/issues"
|
2016-04-24 23:47:26 +02:00
|
|
|
},
|
2024-05-29 14:16:27 +02:00
|
|
|
"homepage": "https://code.foss.global/push.rocks/smartssh",
|
2016-04-25 04:06:20 +02:00
|
|
|
"dependencies": {
|
2026-05-01 18:44:22 +00:00
|
|
|
"@push.rocks/smartcrypto": "^2.0.4",
|
|
|
|
|
"@push.rocks/smartjson": "^6.0.1",
|
|
|
|
|
"@push.rocks/smartpath": "^6.0.0",
|
|
|
|
|
"@push.rocks/smartstring": "^4.1.1",
|
2024-02-09 18:21:33 +01:00
|
|
|
"@types/fs-extra": "^11.0.4",
|
2026-05-01 18:44:22 +00:00
|
|
|
"@types/ssh2": "^1.15.5",
|
|
|
|
|
"fs-extra": "^11.3.4",
|
|
|
|
|
"minimatch": "^10.2.5",
|
|
|
|
|
"node-ssh": "^13.2.1"
|
2016-04-25 04:06:20 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-01 18:44:22 +00:00
|
|
|
"@git.zone/tsbuild": "^4.4.0",
|
|
|
|
|
"@git.zone/tstest": "^3.6.3",
|
|
|
|
|
"@types/node": "^25.6.0"
|
2019-07-17 11:48:31 +02:00
|
|
|
},
|
|
|
|
|
"files": [
|
2022-10-11 13:05:29 +02:00
|
|
|
"ts/**/*",
|
|
|
|
|
"ts_web/**/*",
|
|
|
|
|
"dist/**/*",
|
|
|
|
|
"dist_*/**/*",
|
|
|
|
|
"dist_ts/**/*",
|
|
|
|
|
"dist_ts_web/**/*",
|
|
|
|
|
"assets/**/*",
|
2019-07-17 11:48:31 +02:00
|
|
|
"cli.js",
|
2026-05-01 18:44:22 +00:00
|
|
|
".smartconfig.json",
|
|
|
|
|
"LICENSE",
|
2019-07-17 11:48:31 +02:00
|
|
|
"npmextra.json",
|
|
|
|
|
"readme.md"
|
2022-10-11 13:05:29 +02:00
|
|
|
],
|
|
|
|
|
"browserslist": [
|
|
|
|
|
"last 1 chrome versions"
|
2019-07-17 11:48:31 +02:00
|
|
|
]
|
2026-05-01 18:44:22 +00:00
|
|
|
}
|