Files
smartssh/package.json
T

72 lines
1.6 KiB
JSON
Raw Normal View History

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.",
"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": {
"test": "tstest test/",
2019-07-17 11:48:31 +02:00
"testDocker": "tsdocker",
"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
],
"author": "Task Venture Capital GmbH <hello@task.vc>",
2016-04-24 23:47:26 +02:00
"license": "MIT",
"bugs": {
"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": {
"@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",
"@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": {
"@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",
".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
]
}