Files
docker/package.json

80 lines
2.2 KiB
JSON
Raw Normal View History

2016-06-14 08:45:31 +02:00
{
2024-02-02 16:40:38 +01:00
"name": "@apiclient.xyz/docker",
2025-08-19 01:46:37 +00:00
"version": "1.3.5",
2024-04-23 20:10:36 +02:00
"description": "Provides easy communication with Docker remote API from Node.js, with TypeScript support.",
2019-01-10 00:31:48 +01:00
"private": false,
2020-03-22 23:53:31 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-10-17 09:36:35 +02:00
"type": "module",
2016-06-14 08:45:31 +02:00
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 600)",
2022-10-17 09:36:35 +02:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-06-14 08:45:31 +02:00
},
"repository": {
"type": "git",
"url": "https://code.foss.global/apiclient.xyz/docker.git"
2016-06-14 08:45:31 +02:00
},
"keywords": [
2024-04-23 19:58:04 +02:00
"Docker",
"API",
"Node.js",
"TypeScript",
"Containers",
"Images",
"Networks",
"Services",
"Secrets"
2016-06-14 08:45:31 +02:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/apiclient.xyz/docker/issues"
2016-06-14 08:45:31 +02:00
},
"homepage": "https://code.foss.global/apiclient.xyz/docker#readme",
2016-06-14 09:17:07 +02:00
"dependencies": {
"@push.rocks/lik": "^6.2.2",
"@push.rocks/smartarchive": "^4.2.2",
"@push.rocks/smartbucket": "^3.3.10",
"@push.rocks/smartfile": "^11.2.7",
"@push.rocks/smartjson": "^5.0.20",
"@push.rocks/smartlog": "^3.1.8",
"@push.rocks/smartnetwork": "^4.1.2",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrequest": "^4.3.1",
"@push.rocks/smartstream": "^3.2.5",
2024-05-08 19:58:09 +02:00
"@push.rocks/smartstring": "^4.0.15",
"@push.rocks/smartunique": "^3.0.9",
2024-05-08 19:58:09 +02:00
"@push.rocks/smartversion": "^3.0.5",
"@tsclass/tsclass": "^9.2.0",
"rxjs": "^7.8.2"
2016-06-16 00:45:43 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.6.7",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.3.5",
"@push.rocks/qenv": "^6.1.3",
"@types/node": "22.7.5"
2019-08-14 20:56:57 +02:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-03-22 23:53:31 +00:00
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-14 20:56:57 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2020-09-30 16:35:24 +00:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"pnpm": {
"overrides": {}
}
2024-04-23 19:58:05 +02:00
}